X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Ftemp%2Fmkostemp.c;h=d8dcb8052da56afe647a862af2f54322b97ee0c1;hb=4554f155dd23a65fcdfd39f1d5af8af55ba37694;hp=e73e22a68d1215ef935d37f93bf849460ca13b34;hpb=2cc63358cdb0309ca996ffe56ccf402c2f2f16d5;p=musl diff --git a/src/temp/mkostemp.c b/src/temp/mkostemp.c index e73e22a6..d8dcb805 100644 --- a/src/temp/mkostemp.c +++ b/src/temp/mkostemp.c @@ -1,12 +1,9 @@ #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); +weak_alias(mkostemp, mkostemp64);