diff options
| author | christos <christos@NetBSD.org> | 2015-01-18 17:56:09 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2015-01-18 17:56:09 +0000 |
| commit | 9f7f631d862a4fc58736cdeff88dbb2332adb3df (patch) | |
| tree | 65018ac2537e5442db2e242c0fcfd99e3133c6fa /include | |
| parent | 4141f616f2c3b81c12b10879d021dedaf3f53044 (diff) | |
remove restrict to match with OpenBSD prototype (Kamil Rytarowski)
Diffstat (limited to 'include')
| -rw-r--r-- | include/stdlib.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 27c6613b9fb..c1c24d21cf2 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,4 +1,4 @@ -/* $NetBSD: stdlib.h,v 1.111 2015/01/16 18:40:16 christos Exp $ */ +/* $NetBSD: stdlib.h,v 1.112 2015/01/18 17:56:09 christos Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -124,8 +124,7 @@ long strtol(const char * __restrict, char ** __restrict, int); unsigned long strtoul(const char * __restrict, char ** __restrict, int); #ifdef _OPENBSD_SOURCE -long long strtonum(const char * __restrict, long long, long long, - const char ** __restrict); +long long strtonum(const char *, long long, long long, const char **); #endif int system(const char *); |
