Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/core/posix-wasm/src/lib/temp/mkstemps.c
1067 views
1
#define _BSD_SOURCE
2
#include <stdlib.h>
3
4
int __mkostemps(char *, int, int);
5
int mkstemps(char *template, int len)
6
{
7
return __mkostemps(template, len, 0);
8
}
9
10
11