X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftemp%2Fmkstemp.c;h=76c835bb01bc50806a0fcab39cec4a727d32db6e;hb=c5f4b2dfea320356f69445dc1adf8f73596a3c36;hp=19d4014816f973b78f162c916e2a1e6e36b43436;hpb=13d1afa46f8098df290008c681816c9eb89ffbdb;p=musl diff --git a/src/temp/mkstemp.c b/src/temp/mkstemp.c index 19d40148..76c835bb 100644 --- a/src/temp/mkstemp.c +++ b/src/temp/mkstemp.c @@ -1,9 +1,6 @@ #include -#include "libc.h" int mkstemp(char *template) { return __mkostemps(template, 0, 0); } - -LFS64(mkstemp);