move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / temp / mkostemp.c
blobd8dcb8052da56afe647a862af2f54322b97ee0c1
1 #define _BSD_SOURCE
2 #include <stdlib.h>
4 int mkostemp(char *template, int flags)
6 return __mkostemps(template, 0, flags);
9 weak_alias(mkostemp, mkostemp64);