diff options
Diffstat (limited to 'stdio-common/psiginfo-define.h')
-rw-r--r-- | stdio-common/psiginfo-define.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/stdio-common/psiginfo-define.h b/stdio-common/psiginfo-define.h new file mode 100644 index 0000000000..e1d1a351f8 --- /dev/null +++ b/stdio-common/psiginfo-define.h @@ -0,0 +1,15 @@ +static const union C(codestrs_t_, NOW) { + struct { +#define P(n, s) char MF(__LINE__)[sizeof (s)]; +#include "psiginfo-data.h" + }; + char str[0]; +} C(codestrs_, NOW) = { { +#define P(n, s) s, +#include "psiginfo-data.h" + } }; +static const uint8_t C(codes_, NOW)[] = { +#define P(n, s) [(n) - 1] = offsetof (union C(codestrs_t_, NOW), MF(__LINE__)), +#include "psiginfo-data.h" +}; +#undef NOW |