Skip to content

Commit df8afb0

Browse files
committed
Added rmdir to stdlib
1 parent 501b241 commit df8afb0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pixie/stdlib.pxi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
(def fopen (ffi-fn libc "fopen" [CCharP CCharP] CVoidP))
1919
(def fread (ffi-fn libc "fread" [CVoidP CInt CInt CVoidP] CInt))
2020
(def mkdtemp (ffi-fn libc "mkdtemp" [CCharP] CCharP))
21+
(def rmdir (ffi-fn libc "rmdir" [CCharP] CCharP))
2122

2223
(def libm (ffi-library (str "libm." pixie.platform/so-ext)))
2324
(def atan2 (ffi-fn libm "atan2" [CDouble CDouble] CDouble))

0 commit comments

Comments
 (0)