xref: /openbsd/usr.sbin/radiusd/imsg_subr.h (revision 4cfece93)
1 /*	$OpenBSD: imsg_subr.h,v 1.1 2015/07/21 04:06:04 yasuoka Exp $	*/
2 
3 #ifndef _IMSG_SUBR_H
4 #define _IMSG_SUBR_H
5 
6 struct imsgbuf;
7 
8 #include <sys/cdefs.h>
9 __BEGIN_DECLS
10 
11 int	 imsg_sync_read(struct imsgbuf *, int);
12 int	 imsg_sync_flush(struct imsgbuf *, int);
13 
14 __END_DECLS
15 
16 #endif
17