summaryrefslogtreecommitdiff
path: root/nuttx/include/stdlib.h
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-06 07:00:23 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-06 07:00:23 -0600
commitd7adf70524254769f6e5a004d78ccf90965f70f6 (patch)
treebc0e20dc801e74506c4fa946b532e80b26468b5d /nuttx/include/stdlib.h
parentee838563ae1484f45e8bb3361bb2e44fd117f615 (diff)
downloadpx4-nuttx-d7adf70524254769f6e5a004d78ccf90965f70f6.tar.gz
px4-nuttx-d7adf70524254769f6e5a004d78ccf90965f70f6.tar.bz2
px4-nuttx-d7adf70524254769f6e5a004d78ccf90965f70f6.zip
Can't use formal parameter name 'template' in stdlib.h. Causes C++ compilation errors. Noted by Lorenz Meier
Diffstat (limited to 'nuttx/include/stdlib.h')
-rw-r--r--nuttx/include/stdlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/include/stdlib.h b/nuttx/include/stdlib.h
index c149e0ac1..16a3f935b 100644
--- a/nuttx/include/stdlib.h
+++ b/nuttx/include/stdlib.h
@@ -182,8 +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);
+int mktemp(FAR char *path_template);
+int mkstemp(FAR char *path_template);
/* Sorting */