diff options
author | jsg <> | 2004-10-01 04:08:45 +0000 |
---|---|---|
committer | jsg <> | 2004-10-01 04:08:45 +0000 |
commit | 286f2c9acc73fa2c79290ce6e5c7437d99f9f865 (patch) | |
tree | 743ce68bfe07e7ee77a3366ea07a99ec1240255c | |
parent | b04ecbf4bc7e9fd2c6b5fc4f2c8510fc84e73b64 (diff) | |
download | openbsd-286f2c9acc73fa2c79290ce6e5c7437d99f9f865.tar.gz openbsd-286f2c9acc73fa2c79290ce6e5c7437d99f9f865.tar.bz2 openbsd-286f2c9acc73fa2c79290ce6e5c7437d99f9f865.zip |
add some missing $, ok djm@ 'That looks fine to me' millert@
-rw-r--r-- | src/lib/libc/crypt/skipjack.c | 2 | ||||
-rw-r--r-- | src/lib/libc/net/freeaddrinfo.c | 2 | ||||
-rw-r--r-- | src/lib/libc/net/net_addrcmp.c | 2 | ||||
-rw-r--r-- | src/lib/libc/stdlib/lsearch.3 | 2 | ||||
-rw-r--r-- | src/lib/libc/stdlib/lsearch.c | 2 | ||||
-rw-r--r-- | src/lib/libc/stdlib/tfind.c | 2 | ||||
-rw-r--r-- | src/lib/libc/stdlib/tsearch.c | 2 |
7 files changed, 14 insertions, 0 deletions
diff --git a/src/lib/libc/crypt/skipjack.c b/src/lib/libc/crypt/skipjack.c index e700f40c39..2212b984bb 100644 --- a/src/lib/libc/crypt/skipjack.c +++ b/src/lib/libc/crypt/skipjack.c | |||
@@ -1,3 +1,5 @@ | |||
1 | /* $OpenBSD: skipjack.c,v 1.3 2004/10/01 04:08:45 jsg Exp $ */ | ||
2 | |||
1 | /* | 3 | /* |
2 | * Further optimized test implementation of SKIPJACK algorithm | 4 | * Further optimized test implementation of SKIPJACK algorithm |
3 | * Mark Tillotson <markt@chaos.org.uk>, 25 June 98 | 5 | * Mark Tillotson <markt@chaos.org.uk>, 25 June 98 |
diff --git a/src/lib/libc/net/freeaddrinfo.c b/src/lib/libc/net/freeaddrinfo.c index 30fbecb805..ebbc2492df 100644 --- a/src/lib/libc/net/freeaddrinfo.c +++ b/src/lib/libc/net/freeaddrinfo.c | |||
@@ -1,3 +1,5 @@ | |||
1 | /* $OpenBSD: freeaddrinfo.c,v 1.5 2004/10/01 04:08:45 jsg Exp $ */ | ||
2 | |||
1 | /* | 3 | /* |
2 | * Copyright (c) 1996, 1997, 1998, 1999, Craig Metz, All rights reserved. | 4 | * Copyright (c) 1996, 1997, 1998, 1999, Craig Metz, All rights reserved. |
3 | * | 5 | * |
diff --git a/src/lib/libc/net/net_addrcmp.c b/src/lib/libc/net/net_addrcmp.c index c77a2fda48..b5732ec99a 100644 --- a/src/lib/libc/net/net_addrcmp.c +++ b/src/lib/libc/net/net_addrcmp.c | |||
@@ -1,3 +1,5 @@ | |||
1 | /* $OpenBSD: net_addrcmp.c,v 1.8 2004/10/01 04:08:45 jsg Exp $ */ | ||
2 | |||
1 | /* | 3 | /* |
2 | * Copyright (c) 1999 Theo de Raadt | 4 | * Copyright (c) 1999 Theo de Raadt |
3 | * All rights reserved. | 5 | * All rights reserved. |
diff --git a/src/lib/libc/stdlib/lsearch.3 b/src/lib/libc/stdlib/lsearch.3 index 2adc51096d..818aa1bb43 100644 --- a/src/lib/libc/stdlib/lsearch.3 +++ b/src/lib/libc/stdlib/lsearch.3 | |||
@@ -1,3 +1,5 @@ | |||
1 | .\" $OpenBSD: lsearch.3,v 1.4 2004/10/01 04:08:45 jsg Exp $ | ||
2 | .\" | ||
1 | .\" Copyright (c) 1989, 1991, 1993 | 3 | .\" Copyright (c) 1989, 1991, 1993 |
2 | .\" The Regents of the University of California. All rights reserved. | 4 | .\" The Regents of the University of California. All rights reserved. |
3 | .\" | 5 | .\" |
diff --git a/src/lib/libc/stdlib/lsearch.c b/src/lib/libc/stdlib/lsearch.c index 82483d1c82..0815430199 100644 --- a/src/lib/libc/stdlib/lsearch.c +++ b/src/lib/libc/stdlib/lsearch.c | |||
@@ -1,3 +1,5 @@ | |||
1 | /* $OpenBSD: lsearch.c,v 1.3 2004/10/01 04:08:45 jsg Exp $ */ | ||
2 | |||
1 | /* | 3 | /* |
2 | * Copyright (c) 1989, 1993 | 4 | * Copyright (c) 1989, 1993 |
3 | * The Regents of the University of California. All rights reserved. | 5 | * The Regents of the University of California. All rights reserved. |
diff --git a/src/lib/libc/stdlib/tfind.c b/src/lib/libc/stdlib/tfind.c index 5c3b8c17f5..34b916db6c 100644 --- a/src/lib/libc/stdlib/tfind.c +++ b/src/lib/libc/stdlib/tfind.c | |||
@@ -1,3 +1,5 @@ | |||
1 | /* $OpenBSD: tfind.c,v 1.4 2004/10/01 04:08:45 jsg Exp $ */ | ||
2 | |||
1 | /* | 3 | /* |
2 | * Tree search generalized from Knuth (6.2.2) Algorithm T just like | 4 | * Tree search generalized from Knuth (6.2.2) Algorithm T just like |
3 | * the AT&T man page says. | 5 | * the AT&T man page says. |
diff --git a/src/lib/libc/stdlib/tsearch.c b/src/lib/libc/stdlib/tsearch.c index 0ad5866172..67388b4e7f 100644 --- a/src/lib/libc/stdlib/tsearch.c +++ b/src/lib/libc/stdlib/tsearch.c | |||
@@ -1,3 +1,5 @@ | |||
1 | /* $OpenBSD: tsearch.c,v 1.4 2004/10/01 04:08:45 jsg Exp $ */ | ||
2 | |||
1 | /* | 3 | /* |
2 | * Tree search generalized from Knuth (6.2.2) Algorithm T just like | 4 | * Tree search generalized from Knuth (6.2.2) Algorithm T just like |
3 | * the AT&T man page says. | 5 | * the AT&T man page says. |