diff options
-rw-r--r-- | lib/system/ansi_c.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/ansi_c.nim b/lib/system/ansi_c.nim index 47d30886c..05580ea95 100644 --- a/lib/system/ansi_c.nim +++ b/lib/system/ansi_c.nim @@ -11,7 +11,7 @@ # and definitions of Ansi C types in Nim syntax # All symbols are prefixed with 'c_' to avoid ambiguities -{.push hints:off} +{.push hints:off, stack_trace: off, profiler: off.} proc c_memchr(s: pointer, c: cint, n: csize): pointer {. importc: "memchr", header: "<string.h>".} |