20 lines
394 B
C
20 lines
394 B
C
#ifndef MKSH_SIGNAMES_CHECK
|
|
__RCSID("$MirOS: src/bin/mksh/signames.c,v 1.1 2007/01/12 00:25:40 tg Exp $");
|
|
#endif
|
|
|
|
static const struct mksh_sigpair {
|
|
int nr;
|
|
const char *const name;
|
|
} mksh_sigpairs[] = {
|
|
#ifdef __Plan9__
|
|
...
|
|
#elif defined(__minix)
|
|
...
|
|
#elif defined(MKSH_SIGNAMES_CHECK)
|
|
#error no, must be OS supplied
|
|
#elif !defined(__IN_MKDEP)
|
|
#include "signames.inc"
|
|
#endif
|
|
{ 0, NULL }
|
|
};
|