mirror of
https://github.com/vattam/BSDGames.git
synced 2025-12-20 19:04:49 +00:00
git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5086 a4a2c43b-8ac3-0310-8836-e0e880c912e2
12 lines
295 B
C
12 lines
295 B
C
/* cdefs.h - bsd-games wrapper for <sys/cdefs.h> */
|
|
|
|
#include_next <sys/cdefs.h>
|
|
|
|
#ifndef __RCSID
|
|
#define __RCSID(arg) static const char rcsid[] __attribute__((unused)) = arg
|
|
#endif
|
|
|
|
#ifndef __COPYRIGHT
|
|
#define __COPYRIGHT(arg) static const char copyright[] __attribute__((unused)) = arg
|
|
#endif
|