blob: 0ddddaddac548d601604a8c70009616b548104ee (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* ISC license. */
/* MT-unsafe */
#include <skalibs/unixmessage.h>
static char mainbuf[UNIXMESSAGE_BUFSIZE] ;
static char auxbuf[UNIXMESSAGE_AUXBUFSIZE] ;
unixmessage_receiver unixmessage_receiver_0_ = UNIXMESSAGE_RECEIVER_INIT(0, mainbuf, UNIXMESSAGE_BUFSIZE, auxbuf, UNIXMESSAGE_AUXBUFSIZE) ;
|