move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / temp / mkstemp.c
blob166b8afe49bb204e0c23cf35000d1b55a444b2c3
1 #include <stdlib.h>
3 int mkstemp(char *template)
5 return __mkostemps(template, 0, 0);
8 weak_alias(mkstemp, mkstemp64);