* Uncommenting POSIX mkdtemp function. Tested.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28840 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Salvatore Benedetto
2009-01-01 21:01:51 +00:00
parent c71a6614e2
commit e4263eb78e
-2
View File
@@ -69,14 +69,12 @@ mkstemp(char *path)
} }
#if 0
char * char *
mkdtemp(path) mkdtemp(path)
char *path; char *path;
{ {
return (_gettemp(path, (int *)NULL, 1, 0) ? path : (char *)NULL); return (_gettemp(path, (int *)NULL, 1, 0) ? path : (char *)NULL);
} }
#endif
char * char *