sig-internal.h (247B)
1 /* ISC license. */ 2 3 #ifndef SKALIBS_SIG_INTERNAL_H 4 #define SKALIBS_SIG_INTERNAL_H 5 6 typedef struct sigtable_s sigtable, *sigtable_ref ; 7 struct sigtable_s 8 { 9 int number ; 10 char const *name ; 11 } ; 12 13 extern sigtable const skalibs_sigtable[] ; 14 15 #endif