diff options
Diffstat (limited to 'libc/string/generic/strstr.c')
-rw-r--r-- | libc/string/generic/strstr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/string/generic/strstr.c b/libc/string/generic/strstr.c index a7442d614..f151a820a 100644 --- a/libc/string/generic/strstr.c +++ b/libc/string/generic/strstr.c @@ -28,6 +28,8 @@ #include <string.h> +libc_hidden_proto(strstr) + typedef unsigned chartype; char *strstr (const char *phaystack, const char *pneedle) @@ -109,5 +111,4 @@ foundneedle: ret0: return 0; } -libc_hidden_proto(strstr) libc_hidden_def(strstr) |