Go to the documentation of this file.
23 #ifndef MODUTILS_GENKSYMS_H
24 #define MODUTILS_GENKSYMS_H 1
58 #define YYSTYPE yystype
81 #define xmalloc(size) ({ void *__ptr = malloc(size); \
82 if(!__ptr && size != 0) { \
83 fprintf(stderr, "out of memory\n"); \
87 #define xstrdup(str) ({ char *__str = strdup(str); \
89 fprintf(stderr, "out of memory\n"); \