Make RCS macros take arguments

This was breaking code actually using those macros.

Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
This commit is contained in:
Thorsten Glaser 2009-12-10 21:02:30 +01:00 committed by Guillem Jover
parent 27842d7f77
commit a5dbef45e7

View File

@ -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