diff options
author | Thorsten Glaser <tg@mirbsd.org> | 2009-12-10 21:02:30 +0100 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2009-12-10 21:05:52 +0100 |
commit | a5dbef45e77f1de47b11669443ece451e90b85ab (patch) | |
tree | 1e3d12ccfb448ff157bf05b4aff5353db490f8b6 /include | |
parent | 27842d7f773557031790f9479a417ba7c2110e96 (diff) | |
download | libbsd-a5dbef45e77f1de47b11669443ece451e90b85ab.tar.gz |
Make RCS macros take arguments
This was breaking code actually using those macros.
Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/bsd/sys/cdefs.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 |