1 #ifndef CONFIG_H
2 #define CONFIG_H
3 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
4 #define RCSID(X) \
5  static char *rcsid __attribute__ ((unused)) =X
6 #elif __GNUC__ == 2
7 #define RCSID(X) \
8  static char *rcsid = X; \
9  static void *use_rcsid=(&use_rcsid, (void *)&rcsid)
10 #else
11 #define RCSID(X) \
12  static char *rcsid = X
13 #endif
14 
15 @TOP@
16 
17 @BOTTOM@
18 #endif
19