summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/memccpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/string/memccpy.c')
-rw-r--r--src/lib/libc/string/memccpy.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/lib/libc/string/memccpy.c b/src/lib/libc/string/memccpy.c
index 4757f9c0f8..020e6e5679 100644
--- a/src/lib/libc/string/memccpy.c
+++ b/src/lib/libc/string/memccpy.c
@@ -1,6 +1,8 @@
1/* $OpenBSD: memccpy.c,v 1.3 1997/08/20 04:09:39 millert Exp $ */
2
1/*- 3/*-
2 * Copyright (c) 1990 The Regents of the University of California. 4 * Copyright (c) 1990, 1993
3 * All rights reserved. 5 * The Regents of the University of California. All rights reserved.
4 * 6 *
5 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
@@ -32,7 +34,11 @@
32 */ 34 */
33 35
34#if defined(LIBC_SCCS) && !defined(lint) 36#if defined(LIBC_SCCS) && !defined(lint)
35static char *rcsid = "$OpenBSD: memccpy.c,v 1.2 1996/08/19 08:34:03 tholo Exp $"; 37#if 0
38static char sccsid[] = "@(#)memccpy.c 8.1 (Berkeley) 6/4/93";
39#else
40static char *rcsid = "$OpenBSD: memccpy.c,v 1.3 1997/08/20 04:09:39 millert Exp $";
41#endif
36#endif /* LIBC_SCCS and not lint */ 42#endif /* LIBC_SCCS and not lint */
37 43
38#include <string.h> 44#include <string.h>