]> git.ipfire.org Git - thirdparty/libbsd.git/commitdiff
Make RCS macros take arguments
authorThorsten Glaser <tg@mirbsd.org>
Thu, 10 Dec 2009 20:02:30 +0000 (21:02 +0100)
committerGuillem Jover <guillem@hadrons.org>
Thu, 10 Dec 2009 20:05:52 +0000 (21:05 +0100)
This was breaking code actually using those macros.

Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
include/bsd/sys/cdefs.h

index 6afd8d391ed3bd8f836bf02a1d8513ed91456d6a..a0b7860001278772493629d9a4e298b0bf3fa49a 100644 (file)
 #endif
 
 #ifndef __RCSID_SOURCE
-# define __RCSID_SOURCE
+# define __RCSID_SOURCE(x)
 #endif
 
 #ifndef __SCCSID
-# define __SCCSID
+# define __SCCSID(x)
 #endif
 
 #ifndef __COPYRIGHT
-# define __COPYRIGHT
+# define __COPYRIGHT(x)
 #endif
 
 #endif