From: Thorsten Glaser Date: Thu, 10 Dec 2009 20:02:30 +0000 (+0100) Subject: Make RCS macros take arguments X-Git-Tag: 0.2.0~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5dbef45e77f1de47b11669443ece451e90b85ab;p=thirdparty%2Flibbsd.git Make RCS macros take arguments This was breaking code actually using those macros. Signed-off-by: Thorsten Glaser --- diff --git a/include/bsd/sys/cdefs.h b/include/bsd/sys/cdefs.h index 6afd8d3..a0b7860 100644 --- a/include/bsd/sys/cdefs.h +++ b/include/bsd/sys/cdefs.h @@ -79,15 +79,15 @@ #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