blob: 573fbfa4d16d517581e2694b3aca34158f85d39f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* ISC license. */
#ifndef SKALIBS_SIG_INTERNAL_H
#define SKALIBS_SIG_INTERNAL_H
typedef struct sigtable_s sigtable, *sigtable_ref ;
struct sigtable_s
{
int number ;
char const *name ;
} ;
extern sigtable const skalibs_sigtable[] ;
#endif
|