diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-09-24 13:24:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 13:24:41 +0200 |
commit | 5d315ebcc2d4f46b4a74c6ab10146466c894b9de (patch) | |
tree | 1ba20d35b0c8cb9402fae7c8b6b1ec2a9676d8cd /lib/pure | |
parent | 561b01004cfeb572f82327cd8a3de55d076cb5ff (diff) | |
download | Nim-5d315ebcc2d4f46b4a74c6ab10146466c894b9de.tar.gz |
ported Nim to proprietary CrossOS [backport] (#18889)
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/os.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim index cfdacdb3c..dd1f9f0b6 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -3007,7 +3007,7 @@ when not weirdTarget and (defined(freebsd) or defined(dragonfly) or defined(netb proc sysctl(name: ptr cint, namelen: cuint, oldp: pointer, oldplen: ptr csize_t, newp: pointer, newplen: csize_t): cint {.importc: "sysctl",header: """#include <sys/types.h> - #include <sys/sysctl.h>"""} + #include <sys/sysctl.h>""".} const CTL_KERN = 1 KERN_PROC = 14 |