Module Name: src
Committed By: joerg
Date: Mon May 23 23:06:41 UTC 2011
Modified Files:
src/games/dab: defs.h
Log Message:
Map RCSID to __RCSID
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/games/dab/defs.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/games/dab/defs.h
diff -u src/games/dab/defs.h:1.2 src/games/dab/defs.h:1.3
--- src/games/dab/defs.h:1.2 Mon Apr 28 20:22:53 2008
+++ src/games/dab/defs.h Mon May 23 23:06:41 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: defs.h,v 1.2 2008/04/28 20:22:53 martin Exp $ */
+/* $NetBSD: defs.h,v 1.3 2011/05/23 23:06:41 joerg Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -36,9 +36,8 @@
#ifndef _H_DEFS
#define _H_DEFS
-#include <stdlib.h>
+#include <sys/cdefs.h>
-#define RCSID(id) \
- static const char *rcsid(const char* x) { return x ? rcsid(id) : x; }
+#define RCSID(id) __RCSID(id);
#endif