summaryrefslogtreecommitdiffstats
path: root/newlib/libc/include/stdlib.h
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2013-11-20 09:46:39 +0000
committerCorinna Vinschen <corinna@vinschen.de>2013-11-20 09:46:39 +0000
commit8273b2112ff066756d80c8ba1622aa14574fc5d3 (patch)
treede6f29a4003bf96d07be8a0262286dc0e1ed3af2 /newlib/libc/include/stdlib.h
parent8856f1f00e5f9cd88def245222c55297130d869b (diff)
downloadcygnal-8273b2112ff066756d80c8ba1622aa14574fc5d3.tar.gz
cygnal-8273b2112ff066756d80c8ba1622aa14574fc5d3.tar.bz2
cygnal-8273b2112ff066756d80c8ba1622aa14574fc5d3.zip
* libc/include/stdlib.h: Declare realpath only if !__STRICT_ANSI__.
Diffstat (limited to 'newlib/libc/include/stdlib.h')
-rw-r--r--newlib/libc/include/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/include/stdlib.h b/newlib/libc/include/stdlib.h
index 9433af4ce..3b421dd0c 100644
--- a/newlib/libc/include/stdlib.h
+++ b/newlib/libc/include/stdlib.h
@@ -118,12 +118,12 @@ int _EXFUN(_mkstemp_r, (struct _reent *, char *));
int _EXFUN(_mkstemps_r, (struct _reent *, char *, int));
char * _EXFUN(_mktemp_r, (struct _reent *, char *) _ATTRIBUTE ((__warning__ ("the use of `mktemp' is dangerous; use `mkstemp' instead"))));
#endif
-char * _EXFUN(realpath, (const char *__restrict path, char *__restrict resolved_path));
_VOID _EXFUN(qsort,(_PTR __base, size_t __nmemb, size_t __size, __compar_fn_t _compar));
int _EXFUN(rand,(_VOID));
_PTR _EXFUN_NOTHROW(realloc,(_PTR __r, size_t __size));
#ifndef __STRICT_ANSI__
_PTR _EXFUN(reallocf,(_PTR __r, size_t __size));
+char * _EXFUN(realpath, (const char *__restrict path, char *__restrict resolved_path));
#endif
_VOID _EXFUN(srand,(unsigned __seed));
double _EXFUN(strtod,(const char *__restrict __n, char **__restrict __end_PTR));