diff options
Diffstat (limited to 'lib/libc/string/memccpy.c')
-rw-r--r-- | lib/libc/string/memccpy.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/libc/string/memccpy.c b/lib/libc/string/memccpy.c index e4c9d0e17edd..d6a446503eb6 100644 --- a/lib/libc/string/memccpy.c +++ b/lib/libc/string/memccpy.c @@ -29,16 +29,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)memccpy.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> void * -memccpy(void *t, const void *f, int c, size_t n) +memccpy(void * restrict t, const void * restrict f, int c, size_t n) { if (n) { |