about summary refs log tree commit diff
path: root/sysdeps/generic/memccpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/memccpy.c')
-rw-r--r--sysdeps/generic/memccpy.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/generic/memccpy.c b/sysdeps/generic/memccpy.c
index 44a874a954..f7b496de9f 100644
--- a/sysdeps/generic/memccpy.c
+++ b/sysdeps/generic/memccpy.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1995, 1997, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -17,6 +17,7 @@
    Boston, MA 02111-1307, USA.  */
 
 #include <string.h>
+#include <memcopy.h>
 
 #undef __memccpy
 #undef memccpy
@@ -31,7 +32,7 @@ __memccpy (dest, src, c, n)
 {
   register const char *s = src;
   register char *d = dest;
-  register const int x = (unsigned char) c;
+  register const reg_char x = (unsigned char) c;
   register size_t i = n;
 
   while (i-- > 0)