diff options
author | dillon <dillon@FreeBSD.org> | 2001-09-15 19:36:55 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 2001-09-15 19:36:55 +0000 |
commit | d085d52af7eab15f7d8cfb2ebca25f02f273a593 (patch) | |
tree | 9d31a1791407d2c0e6051f61a197a54dd6b15c35 | |
parent | 4f7d5730b0f154089bf3ea108ca67be2494d2668 (diff) | |
download | FreeBSD-src-d085d52af7eab15f7d8cfb2ebca25f02f273a593.zip FreeBSD-src-d085d52af7eab15f7d8cfb2ebca25f02f273a593.tar.gz |
Revamp FBSDID's for libatm. Restore original import rcsid as per bde
Reviewed by: various people
-rw-r--r-- | lib/libatm/atm_addr.c | 14 | ||||
-rw-r--r-- | lib/libatm/cache_key.c | 9 | ||||
-rw-r--r-- | lib/libatm/ioctl_subr.c | 8 | ||||
-rw-r--r-- | lib/libatm/ip_addr.c | 8 | ||||
-rw-r--r-- | lib/libatm/ip_checksum.c | 9 | ||||
-rw-r--r-- | lib/libatm/timer.c | 8 |
6 files changed, 17 insertions, 39 deletions
diff --git a/lib/libatm/atm_addr.c b/lib/libatm/atm_addr.c index c8695f8..ff6b2c2 100644 --- a/lib/libatm/atm_addr.c +++ b/lib/libatm/atm_addr.c @@ -22,10 +22,14 @@ * * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. - * - * @(#) $FreeBSD$ - * */ +#include <sys/cdefs.h> +#ifndef lint +#if 0 /* original (broken) import id */ +static char *RCSid = "@(#) $Id: atm_addr.c,v 1.1 1998/07/09 21:45:18 johnc Exp $"; +#endif +#endif +__FBSDID("$FreeBSD$"); /* * User Space Library Functions @@ -36,7 +40,6 @@ */ #include <sys/types.h> -#include <sys/cdefs.h> #include <sys/param.h> #include <sys/socket.h> #include <net/if.h> @@ -53,11 +56,8 @@ #include "libatm.h" -__FBSDID("$FreeBSD$"); - extern char *prog; - /* * Get NSAP, NSAP prefix or MAC address * diff --git a/lib/libatm/cache_key.c b/lib/libatm/cache_key.c index 8d9006b..95c8943 100644 --- a/lib/libatm/cache_key.c +++ b/lib/libatm/cache_key.c @@ -22,11 +22,9 @@ * * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. - * - * @(#) $FreeBSD$ - * */ - +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * User Space Library Functions @@ -37,7 +35,6 @@ */ #include <sys/types.h> -#include <sys/cdefs.h> #include <sys/param.h> #include <sys/socket.h> #include <net/if.h> @@ -54,8 +51,6 @@ #include "libatm.h" -__FBSDID("$FreeBSD$"); - /* * Compute an SCSP cache key * diff --git a/lib/libatm/ioctl_subr.c b/lib/libatm/ioctl_subr.c index 1571f6d..66f8d86 100644 --- a/lib/libatm/ioctl_subr.c +++ b/lib/libatm/ioctl_subr.c @@ -22,10 +22,9 @@ * * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. - * - * @(#) $FreeBSD$ - * */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * User Space Library Functions @@ -36,7 +35,6 @@ */ #include <sys/types.h> -#include <sys/cdefs.h> #include <sys/param.h> #include <sys/socket.h> #include <sys/sockio.h> @@ -56,8 +54,6 @@ #include "libatm.h" -__FBSDID("$FreeBSD$"); - #ifndef TRUE #define TRUE 1 #endif diff --git a/lib/libatm/ip_addr.c b/lib/libatm/ip_addr.c index 6a18141..eefd156 100644 --- a/lib/libatm/ip_addr.c +++ b/lib/libatm/ip_addr.c @@ -22,10 +22,9 @@ * * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. - * - * @(#) $FreeBSD$ - * */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * User Space Library Functions @@ -36,7 +35,6 @@ */ #include <sys/types.h> -#include <sys/cdefs.h> #include <sys/param.h> #include <sys/socket.h> #include <net/if.h> @@ -54,8 +52,6 @@ #include "libatm.h" -__FBSDID("$FreeBSD$"); - /* * Get IP address * diff --git a/lib/libatm/ip_checksum.c b/lib/libatm/ip_checksum.c index d80742d..e018190 100644 --- a/lib/libatm/ip_checksum.c +++ b/lib/libatm/ip_checksum.c @@ -22,11 +22,9 @@ * * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. - * - * @(#) $FreeBSD$ - * */ - +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * User Space Library Functions @@ -37,7 +35,6 @@ */ #include <sys/types.h> -#include <sys/cdefs.h> #include <sys/param.h> #include <sys/socket.h> #include <net/if.h> @@ -51,8 +48,6 @@ #include "libatm.h" -__FBSDID("$FreeBSD$"); - /* * Compute an IP checksum * diff --git a/lib/libatm/timer.c b/lib/libatm/timer.c index 10baf8f..fa7f264 100644 --- a/lib/libatm/timer.c +++ b/lib/libatm/timer.c @@ -22,10 +22,9 @@ * * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. - * - * @(#) $FreeBSD$ - * */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * User Space Library Functions @@ -36,7 +35,6 @@ */ #include <sys/types.h> -#include <sys/cdefs.h> #include <sys/param.h> #include <sys/socket.h> #include <net/if.h> @@ -54,8 +52,6 @@ #include "libatm.h" -__FBSDID("$FreeBSD$"); - Harp_timer *harp_timer_head; int harp_timer_exec; |