mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
7 lines
149 B
V
7 lines
149 B
V
module os
|
|
|
|
// debugger_present returns a bool indicating if the process is being debugged
|
|
@[inline]
|
|
pub fn debugger_present() bool {
|
|
return false
|
|
}
|