elf.h: add ELFCOMPRESS_ZSTD
[musl] / src / temp / mkstemp.c
index 85764af..76c835b 100644 (file)
@@ -1,11 +1,6 @@
 #include <stdlib.h>
-#include "libc.h"
-
-int __mkostemps(char *, int, int);
 
 int mkstemp(char *template)
 {
        return __mkostemps(template, 0, 0);
 }
-
-LFS64(mkstemp);