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