summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/memccpy.c
diff options
context:
space:
mode:
authormillert <>1997-08-20 04:13:57 +0000
committermillert <>1997-08-20 04:13:57 +0000
commiteefd83616fed7208460c4c742ea85c68488acf7c (patch)
tree6cba1a5ee93f08e0721a99fcfa0c74683f6b7911 /src/lib/libc/string/memccpy.c
parent4eac491513b57fb0e90b92aa5b40f29e9326b233 (diff)
downloadopenbsd-eefd83616fed7208460c4c742ea85c68488acf7c.tar.gz
openbsd-eefd83616fed7208460c4c742ea85c68488acf7c.tar.bz2
openbsd-eefd83616fed7208460c4c742ea85c68488acf7c.zip
Update man page and sccs tags from lite2.
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>