aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic/strrchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/strrchr.c')
-rw-r--r--sysdeps/generic/strrchr.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/sysdeps/generic/strrchr.c b/sysdeps/generic/strrchr.c
index 29402f086c..663b6aa753 100644
--- a/sysdeps/generic/strrchr.c
+++ b/sysdeps/generic/strrchr.c
@@ -16,25 +16,23 @@ License along with the GNU C Library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA. */
-#include <ansidecl.h>
#include <string.h>
-
/* Find the last ocurrence of C in S. */
char *
-DEFUN(strrchr, (s, c), CONST char *s AND int c)
+strrchr (const char *s, int c)
{
- register CONST char *found, *p;
+ register const char *found, *p;
c = (unsigned char) c;
/* Since strchr is fast, we use it rather than the obvious loop. */
-
+
if (c == '\0')
- return strchr(s, '\0');
+ return strchr (s, '\0');
found = NULL;
- while ((p = strchr(s, c)) != NULL)
+ while ((p = strchr (s, c)) != NULL)
{
found = p;
s = p + 1;