diff options
Diffstat (limited to 'src/stdlib/mktemp.c')
| -rw-r--r-- | src/stdlib/mktemp.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stdlib/mktemp.c b/src/stdlib/mktemp.c new file mode 100644 index 00000000..cc6e5e82 --- /dev/null +++ b/src/stdlib/mktemp.c @@ -0,0 +1,10 @@ +#include <stdlib.h> + +char *mktemp(char *template) +{ + return template; +} + +/* +XOPEN(400,700) +*/ |
