summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2001-09-15 21:10:25 +0000
committerobrien <obrien@FreeBSD.org>2001-09-15 21:10:25 +0000
commitf4750b106623b4d923dbc0de54a00642b3aad6bc (patch)
tree38ec8b32d1ea8c57219fdbdca0c409a0db8d2fdb
parentd085d52af7eab15f7d8cfb2ebca25f02f273a593 (diff)
downloadFreeBSD-src-f4750b106623b4d923dbc0de54a00642b3aad6bc.zip
FreeBSD-src-f4750b106623b4d923dbc0de54a00642b3aad6bc.tar.gz
Allow __FBSDID() to be used without ;
-rw-r--r--sys/sys/cdefs.h6
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
OpenPOWER on IntegriCloud