We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9543c07 + 8bed3a8 commit d24b17aCopy full SHA for d24b17a
pixie/stdlib.pxi
@@ -17,6 +17,10 @@
17
(def srand (ffi-fn libc "srand" [CInt] CInt))
18
(def fopen (ffi-fn libc "fopen" [CCharP CCharP] CVoidP))
19
(def fread (ffi-fn libc "fread" [CVoidP CInt CInt CVoidP] CInt))
20
+(def mkdtemp (ffi-fn libc "mkdtemp" [CCharP] CCharP))
21
+(def mkdir (ffi-fn libc "mkdir" [CCharP] CCharP))
22
+(def rmdir (ffi-fn libc "rmdir" [CCharP] CCharP))
23
+(def rm (ffi-fn libc "remove" [CCharP] CCharP))
24
25
(def libm (ffi-library (str "libm." pixie.platform/so-ext)))
26
(def atan2 (ffi-fn libm "atan2" [CDouble CDouble] CDouble))
0 commit comments