/* This file is in the public domain. */ #include #include #include extern const char *__progname; typedef struct verbkey VERBKEY; struct verbkey { const char *name; unsigned int bit; } ; #define VERBKEY(s,d,b) { #b,__LINE__ } #define IONLYKEY(s,b) { 0,0 } static const VERBKEY verbkeys[] = { #include "verbose-table.inc" }; #define NVERBKEYS (sizeof(verbkeys)/sizeof(verbkeys[0])) int main(void); int main(void) { int i; unsigned int m; unsigned int all; printf("/* This file is in the public domain. */\n"); printf("/* This file is mechanically generated by code in gen-verbose-bits.c. */\n"); m = 1; all = 0; for (i=0;i