X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Ftemp%2Fmkstemps.c;fp=src%2Ftemp%2Fmkstemps.c;h=fda710b0d9edafc68ad2fef681e171ff87205452;hp=0000000000000000000000000000000000000000;hb=2cc63358cdb0309ca996ffe56ccf402c2f2f16d5;hpb=f78cdbe8993d072bf60a65754544199016a1fe29 diff --git a/src/temp/mkstemps.c b/src/temp/mkstemps.c new file mode 100644 index 00000000..fda710b0 --- /dev/null +++ b/src/temp/mkstemps.c @@ -0,0 +1,12 @@ +#define _BSD_SOURCE +#include +#include "libc.h" + +int __mkostemps(char *, int, int); + +int mkstemps(char *template, int len) +{ + return __mkostemps(template, len, 0); +} + +LFS64(mkstemps);