diff options
Diffstat (limited to 'lib/system/ansi_c.nim')
-rw-r--r-- | lib/system/ansi_c.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/system/ansi_c.nim b/lib/system/ansi_c.nim index 55e004f6e..6649e9517 100644 --- a/lib/system/ansi_c.nim +++ b/lib/system/ansi_c.nim @@ -140,6 +140,8 @@ proc c_sprintf*(buf, frmt: cstring): cint {. proc c_malloc*(size: csize_t): pointer {. importc: "malloc", header: "<stdlib.h>".} +proc c_calloc*(nmemb, size: csize_t): pointer {. + importc: "calloc", header: "<stdlib.h>".} proc c_free*(p: pointer) {. importc: "free", header: "<stdlib.h>".} proc c_realloc*(p: pointer, newsize: csize_t): pointer {. |