Chromium Code Reviews| Index: fusl/src/temp/mkstemp.c |
| diff --git a/fusl/src/temp/mkstemp.c b/fusl/src/temp/mkstemp.c |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..85764af7cd35daa720d41021dbc8bd2803e020e4 |
| --- /dev/null |
| +++ b/fusl/src/temp/mkstemp.c |
| @@ -0,0 +1,11 @@ |
| +#include <stdlib.h> |
| +#include "libc.h" |
| + |
| +int __mkostemps(char *, int, int); |
| + |
| +int mkstemp(char *template) |
| +{ |
| + return __mkostemps(template, 0, 0); |
| +} |
| + |
| +LFS64(mkstemp); |