mirror of
https://github.com/vlang/v.git
synced 2025-09-08 14:51:53 -04:00
10 lines
266 B
V
10 lines
266 B
V
module os
|
|
|
|
// debugger_present returns a bool indicating if the process is being debugged.
|
|
// Note: implementation available only on Darwin, FreeBSD, Linux, OpenBSD and
|
|
// Windows. Otherwise, returns false.
|
|
@[inline]
|
|
pub fn debugger_present() bool {
|
|
return false
|
|
}
|