diff options
| author | lukem <lukem@NetBSD.org> | 2003-03-09 00:57:17 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 2003-03-09 00:57:17 +0000 |
| commit | a2ed7b2d73611dcbcfe31217fee94d19c8826db0 (patch) | |
| tree | 7e429b3e4a4218525128d7ca7610f166c54086b6 /lib/libform | |
| parent | edec83ad56a5661fcf4a0c338633fc46f5cdb9d0 (diff) | |
use __RCSID()
Diffstat (limited to 'lib/libform')
| -rw-r--r-- | lib/libform/driver.c | 5 | ||||
| -rw-r--r-- | lib/libform/field.c | 5 | ||||
| -rw-r--r-- | lib/libform/field_types.c | 5 | ||||
| -rw-r--r-- | lib/libform/form.c | 5 | ||||
| -rw-r--r-- | lib/libform/internals.c | 5 | ||||
| -rw-r--r-- | lib/libform/post.c | 5 | ||||
| -rw-r--r-- | lib/libform/std_header.c | 5 | ||||
| -rw-r--r-- | lib/libform/type_alpha.c | 5 | ||||
| -rw-r--r-- | lib/libform/type_enum.c | 5 | ||||
| -rw-r--r-- | lib/libform/type_integer.c | 5 | ||||
| -rw-r--r-- | lib/libform/type_ipv4.c | 5 | ||||
| -rw-r--r-- | lib/libform/type_ipv6.c | 5 | ||||
| -rw-r--r-- | lib/libform/type_numeric.c | 5 | ||||
| -rw-r--r-- | lib/libform/type_regex.c | 5 |
14 files changed, 56 insertions, 14 deletions
diff --git a/lib/libform/driver.c b/lib/libform/driver.c index eed6cd1b51f..d7edcd0f846 100644 --- a/lib/libform/driver.c +++ b/lib/libform/driver.c @@ -1,4 +1,4 @@ -/* $NetBSD: driver.c,v 1.14 2002/08/02 11:48:02 blymn Exp $ */ +/* $NetBSD: driver.c,v 1.15 2003/03/09 00:57:17 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -29,6 +29,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: driver.c,v 1.15 2003/03/09 00:57:17 lukem Exp $"); + #include <ctype.h> #include "form.h" #include "internals.h" diff --git a/lib/libform/field.c b/lib/libform/field.c index 2fe7ea1c8a9..d71ac7fd3a6 100644 --- a/lib/libform/field.c +++ b/lib/libform/field.c @@ -1,4 +1,4 @@ -/* $NetBSD: field.c,v 1.21 2002/08/09 14:15:12 blymn Exp $ */ +/* $NetBSD: field.c,v 1.22 2003/03/09 00:57:17 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn * (blymn@baea.com.au, brett_lymn@yahoo.com.au) @@ -28,6 +28,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: field.c,v 1.22 2003/03/09 00:57:17 lukem Exp $"); + #include <stdlib.h> #include <strings.h> #include <stdarg.h> diff --git a/lib/libform/field_types.c b/lib/libform/field_types.c index 91a3f83e07b..20b1df9de52 100644 --- a/lib/libform/field_types.c +++ b/lib/libform/field_types.c @@ -1,4 +1,4 @@ -/* $NetBSD: field_types.c,v 1.5 2002/08/22 11:34:00 blymn Exp $ */ +/* $NetBSD: field_types.c,v 1.6 2003/03/09 00:57:17 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -29,6 +29,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: field_types.c,v 1.6 2003/03/09 00:57:17 lukem Exp $"); + #include <stdlib.h> #include <stdarg.h> #include "form.h" diff --git a/lib/libform/form.c b/lib/libform/form.c index a8d7970c914..448d22f448e 100644 --- a/lib/libform/form.c +++ b/lib/libform/form.c @@ -1,4 +1,4 @@ -/* $NetBSD: form.c,v 1.13 2002/08/02 14:10:25 blymn Exp $ */ +/* $NetBSD: form.c,v 1.14 2003/03/09 00:57:18 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -29,6 +29,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: form.c,v 1.14 2003/03/09 00:57:18 lukem Exp $"); + #include <stdlib.h> #include <strings.h> #include <form.h> diff --git a/lib/libform/internals.c b/lib/libform/internals.c index 9281ca9f375..8cf486d83a9 100644 --- a/lib/libform/internals.c +++ b/lib/libform/internals.c @@ -1,4 +1,4 @@ -/* $NetBSD: internals.c,v 1.28 2002/08/07 11:05:10 blymn Exp $ */ +/* $NetBSD: internals.c,v 1.29 2003/03/09 00:57:18 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -29,6 +29,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: internals.c,v 1.29 2003/03/09 00:57:18 lukem Exp $"); + #include <limits.h> #include <ctype.h> #include <stdio.h> diff --git a/lib/libform/post.c b/lib/libform/post.c index b98168f99dd..7fe4085e36f 100644 --- a/lib/libform/post.c +++ b/lib/libform/post.c @@ -1,4 +1,4 @@ -/* $NetBSD: post.c,v 1.8 2001/06/13 10:45:59 wiz Exp $ */ +/* $NetBSD: post.c,v 1.9 2003/03/09 00:57:19 lukem Exp $ */ /*- * Copyright (c) 1998-2000 Brett Lymn @@ -29,6 +29,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: post.c,v 1.9 2003/03/09 00:57:19 lukem Exp $"); + #include "form.h" #include "internals.h" diff --git a/lib/libform/std_header.c b/lib/libform/std_header.c index a97e795a144..26ff3e3a76f 100644 --- a/lib/libform/std_header.c +++ b/lib/libform/std_header.c @@ -1,4 +1,4 @@ -/* $NetBSD: std_header.c,v 1.2 2001/06/13 10:45:59 wiz Exp $ */ +/* $NetBSD: std_header.c,v 1.3 2003/03/09 00:57:19 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -29,3 +29,6 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: std_header.c,v 1.3 2003/03/09 00:57:19 lukem Exp $"); + diff --git a/lib/libform/type_alpha.c b/lib/libform/type_alpha.c index 18b9d1ec171..f0df0cfee81 100644 --- a/lib/libform/type_alpha.c +++ b/lib/libform/type_alpha.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_alpha.c,v 1.6 2001/06/13 10:45:59 wiz Exp $ */ +/* $NetBSD: type_alpha.c,v 1.7 2003/03/09 00:57:19 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -29,6 +29,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: type_alpha.c,v 1.7 2003/03/09 00:57:19 lukem Exp $"); + #include <stdlib.h> #include <string.h> #include <ctype.h> diff --git a/lib/libform/type_enum.c b/lib/libform/type_enum.c index 72fb9cfeba0..82c875b685e 100644 --- a/lib/libform/type_enum.c +++ b/lib/libform/type_enum.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_enum.c,v 1.6 2001/06/13 10:45:59 wiz Exp $ */ +/* $NetBSD: type_enum.c,v 1.7 2003/03/09 00:57:19 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -29,6 +29,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: type_enum.c,v 1.7 2003/03/09 00:57:19 lukem Exp $"); + #include <stdlib.h> #include <strings.h> #include "form.h" diff --git a/lib/libform/type_integer.c b/lib/libform/type_integer.c index 425ab2d78a0..bd6b37a0065 100644 --- a/lib/libform/type_integer.c +++ b/lib/libform/type_integer.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_integer.c,v 1.4 2001/06/13 10:45:59 wiz Exp $ */ +/* $NetBSD: type_integer.c,v 1.5 2003/03/09 00:57:19 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -29,6 +29,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: type_integer.c,v 1.5 2003/03/09 00:57:19 lukem Exp $"); + #include <stdlib.h> #include <strings.h> #include <ctype.h> diff --git a/lib/libform/type_ipv4.c b/lib/libform/type_ipv4.c index 92c168fa229..85ec6cbbd5f 100644 --- a/lib/libform/type_ipv4.c +++ b/lib/libform/type_ipv4.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_ipv4.c,v 1.6 2001/06/13 10:45:59 wiz Exp $ */ +/* $NetBSD: type_ipv4.c,v 1.7 2003/03/09 00:57:19 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -29,6 +29,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: type_ipv4.c,v 1.7 2003/03/09 00:57:19 lukem Exp $"); + #include <string.h> #include <stdlib.h> #include <ctype.h> diff --git a/lib/libform/type_ipv6.c b/lib/libform/type_ipv6.c index eb60aec1dd7..2f08feb1e00 100644 --- a/lib/libform/type_ipv6.c +++ b/lib/libform/type_ipv6.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_ipv6.c,v 1.6 2001/06/13 10:45:59 wiz Exp $ */ +/* $NetBSD: type_ipv6.c,v 1.7 2003/03/09 00:57:20 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -32,6 +32,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: type_ipv6.c,v 1.7 2003/03/09 00:57:20 lukem Exp $"); + #include <sys/types.h> #include <sys/socket.h> #include <ctype.h> diff --git a/lib/libform/type_numeric.c b/lib/libform/type_numeric.c index 31904a11cca..84aa96d57c8 100644 --- a/lib/libform/type_numeric.c +++ b/lib/libform/type_numeric.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_numeric.c,v 1.4 2001/06/13 10:45:59 wiz Exp $ */ +/* $NetBSD: type_numeric.c,v 1.5 2003/03/09 00:57:20 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -29,6 +29,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: type_numeric.c,v 1.5 2003/03/09 00:57:20 lukem Exp $"); + #include <stdlib.h> #include <string.h> #include <ctype.h> diff --git a/lib/libform/type_regex.c b/lib/libform/type_regex.c index 52d1886997f..b85afa455bd 100644 --- a/lib/libform/type_regex.c +++ b/lib/libform/type_regex.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_regex.c,v 1.4 2002/06/19 14:12:57 blymn Exp $ */ +/* $NetBSD: type_regex.c,v 1.5 2003/03/09 00:57:20 lukem Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -29,6 +29,9 @@ * */ +#include <sys/cdefs.h> +__RCSID("$NetBSD: type_regex.c,v 1.5 2003/03/09 00:57:20 lukem Exp $"); + #include <stdlib.h> #include <sys/types.h> #include <regex.h> |
