mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
os: move pub fn debugger_present() bool{
to platform-specific files (better ptrace portability handling) (#17373)
This commit is contained in:
7
vlib/os/debugger_default.c.v
Normal file
7
vlib/os/debugger_default.c.v
Normal file
@ -0,0 +1,7 @@
|
||||
module os
|
||||
|
||||
// debugger_present returns a bool indicating if the process is being debugged
|
||||
[inline]
|
||||
pub fn debugger_present() bool {
|
||||
return false
|
||||
}
|
Reference in New Issue
Block a user