diff options
author | obrien <obrien@FreeBSD.org> | 2001-09-15 21:10:25 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-09-15 21:10:25 +0000 |
commit | f4750b106623b4d923dbc0de54a00642b3aad6bc (patch) | |
tree | 38ec8b32d1ea8c57219fdbdca0c409a0db8d2fdb | |
parent | d085d52af7eab15f7d8cfb2ebca25f02f273a593 (diff) | |
download | FreeBSD-src-f4750b106623b4d923dbc0de54a00642b3aad6bc.zip FreeBSD-src-f4750b106623b4d923dbc0de54a00642b3aad6bc.tar.gz |
Allow __FBSDID() to be used without ;
-rw-r--r-- | sys/sys/cdefs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h index 492b234..21d38b0 100644 --- a/sys/sys/cdefs.h +++ b/sys/sys/cdefs.h @@ -208,12 +208,12 @@ #endif #ifndef __RCSID -#define __RCSID(s) __IDSTRING(__CONCAT(__rcsid_,__LINE__),s) +#define __RCSID(s) __IDSTRING(__CONCAT(__rcsid_,__LINE__),s); #endif #ifndef __FBSDID -#if !defined(lint) && !defined(STRIP_FBSDID) -#define __FBSDID(s) __IDSTRING(__CONCAT(__rcsid_,__LINE__),s) +#if !defined(lint) && defined(STRIP_FBSDID) +#define __FBSDID(s) __IDSTRING(__CONCAT(__rcsid_,__LINE__),s); #else #define __FBSDID(s) #endif |