Add mktemp() and mkstemp()

This commit is contained in:
Gregory Nutt
2014-11-05 09:39:18 -06:00
parent 22811f0358
commit d13731711f
4 changed files with 385 additions and 1 deletions
+3 -1
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* include/stdlib.h
*
* Copyright (C) 2007-2013 Gregory Nutt. All rights reserved.
* Copyright (C) 2007-2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -182,6 +182,8 @@ long int labs(long int j);
#ifdef CONFIG_HAVE_LONG_LONG
long long int llabs(long long int j);
#endif
int mktemp(FAR char *template);
int mkstemp(FAR char *template);
/* Sorting */