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