diff options
author | millert <> | 1997-08-20 04:13:57 +0000 |
---|---|---|
committer | millert <> | 1997-08-20 04:13:57 +0000 |
commit | eefd83616fed7208460c4c742ea85c68488acf7c (patch) | |
tree | 6cba1a5ee93f08e0721a99fcfa0c74683f6b7911 /src/lib/libc/string/memccpy.c | |
parent | 4eac491513b57fb0e90b92aa5b40f29e9326b233 (diff) | |
download | openbsd-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.c | 12 |
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) |
35 | static char *rcsid = "$OpenBSD: memccpy.c,v 1.2 1996/08/19 08:34:03 tholo Exp $"; | 37 | #if 0 |
38 | static char sccsid[] = "@(#)memccpy.c 8.1 (Berkeley) 6/4/93"; | ||
39 | #else | ||
40 | static 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> |