diff options
author | Robert Drehmel <robert@FreeBSD.org> | 2002-08-15 09:25:04 +0000 |
---|---|---|
committer | Robert Drehmel <robert@FreeBSD.org> | 2002-08-15 09:25:04 +0000 |
commit | 5618f72405ba7a6b9d960d494f9db670ba994b3f (patch) | |
tree | b37b20746e471ae334376a361c54543969e8e35f /include/stdlib.h | |
parent | 0d533e437d5ab3149e9380d9b0b7819221869d9f (diff) |
Notes
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index f22f1e1d70ab9..c3c3cc07bd384 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -114,10 +114,10 @@ void qsort(void *, size_t, size_t, int rand(void); void *realloc(void *, size_t); void srand(unsigned); -double strtod(const char *, char **); -long strtol(const char *, char **, int); +double strtod(const char *__restrict, char **__restrict); +long strtol(const char *__restrict, char **__restrict, int); unsigned long - strtoul(const char *, char **, int); + strtoul(const char *__restrict, char **__restrict, int); int system(const char *); int mblen(const char *, size_t); @@ -198,13 +198,13 @@ void srandomdev(void); #ifdef __LONG_LONG_SUPPORTED /* LONGLONG */ long long - strtoll(const char *, char **, int); + strtoll(const char *__restrict, char **__restrict, int); #endif __int64_t strtoq(const char *, char **, int); #ifdef __LONG_LONG_SUPPORTED /* LONGLONG */ unsigned long long - strtoull(const char *, char **, int); + strtoull(const char *__restrict, char **__restrict, int); #endif __uint64_t strtouq(const char *, char **, int); |