diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2017-08-30 16:45:36 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2017-08-30 16:45:36 +0200 |
commit | 5fc315b597debc918e93aa21d2f23f4f82051904 (patch) | |
tree | 654cf342f067986ebc77102ad115a0d3291ba9a9 /newlib | |
parent | 42885ea4b8bfece01cac0a4a4030ff4341454353 (diff) | |
download | cygnal-5fc315b597debc918e93aa21d2f23f4f82051904.tar.gz cygnal-5fc315b597debc918e93aa21d2f23f4f82051904.tar.bz2 cygnal-5fc315b597debc918e93aa21d2f23f4f82051904.zip |
newlib: strnstr: drop traditional synopisis
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/libc/string/strnstr.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/newlib/libc/string/strnstr.c b/newlib/libc/string/strnstr.c index fcceebc1f..ce32d0f73 100644 --- a/newlib/libc/string/strnstr.c +++ b/newlib/libc/string/strnstr.c @@ -9,13 +9,6 @@ ANSI_SYNOPSIS #include <string.h> size_t strnstr(const char *<[s1]>, const char *<[s2]>, size_t <[n]>); -TRAD_SYNOPSIS - #include <string.h> - size_t strnstr(<[s1]>, <[s2]>, <[n]>) - char *<[s1]>; - char *<[s2]>; - size_t <[n]>; - DESCRIPTION Locates the first occurrence in the string pointed to by <[s1]> of the sequence of limited to the <[n]> characters in the string |