diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2001-05-24 08:47:42 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-05-24 08:47:42 +0000 |
| commit | 5864b79cd2852339f3025ee81769233071d60934 (patch) | |
| tree | b468e5ee2b4272d5130141a79d342729b5f7e14e /sys/libkern | |
| parent | ac8f990bdebc788c11f8449ca0fd90b65c3b9048 (diff) | |
Notes
Diffstat (limited to 'sys/libkern')
| -rw-r--r-- | sys/libkern/strlcat.c | 6 | ||||
| -rw-r--r-- | sys/libkern/strlcpy.c | 6 | ||||
| -rw-r--r-- | sys/libkern/strsep.c | 4 |
3 files changed, 14 insertions, 2 deletions
diff --git a/sys/libkern/strlcat.c b/sys/libkern/strlcat.c index 5bc2c91b9baa..c325ef332f3d 100644 --- a/sys/libkern/strlcat.c +++ b/sys/libkern/strlcat.c @@ -25,13 +25,15 @@ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ #if defined(LIBC_SCCS) && !defined(lint) static char *rcsid = "$OpenBSD: strlcat.c,v 1.2 1999/06/17 16:28:58 millert Exp $"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/types.h> #include <string.h> diff --git a/sys/libkern/strlcpy.c b/sys/libkern/strlcpy.c index 300a28bc3911..fde5ff5182df 100644 --- a/sys/libkern/strlcpy.c +++ b/sys/libkern/strlcpy.c @@ -28,8 +28,14 @@ */ #if defined(LIBC_SCCS) && !defined(lint) +#if 0 static char *rcsid = "$OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp $"; +#endif #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/types.h> #include <string.h> diff --git a/sys/libkern/strsep.c b/sys/libkern/strsep.c index ddad5964ce19..485f65140c05 100644 --- a/sys/libkern/strsep.c +++ b/sys/libkern/strsep.c @@ -38,6 +38,10 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif /* * Get next token from string *stringp, where tokens are possibly-empty |
