1: /*
2: * Copyright (c) 1986 Regents of the University of California.
3: * All rights reserved. The Berkeley software License Agreement
4: * specifies the terms and conditions for redistribution.
5: *
6: * @(#)msgbuf.h 1.2 (2.11BSD) 1998/12/5
7: */
8:
9: #define MSG_MAGIC 0x063061
10: #define MSG_BSIZE 4096
11:
12: struct msgbuf {
13: long msg_magic;
14: int msg_bufx;
15: int msg_bufr;
16: u_short msg_click;
17: char *msg_bufc;
18: };
19:
20: #define logMSG 0 /* /dev/klog */
21: #define logDEV 1 /* /dev/erlg */
22: #define logACCT 2 /* /dev/acct */
Defined struct's
msgbuf
defined in line
12; used 18 times
Defined macros
Usage of this include