summaryrefslogtreecommitdiff
path: root/msg.c
diff options
context:
space:
mode:
Diffstat (limited to 'msg.c')
-rw-r--r--msg.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/msg.c b/msg.c
index 322472668..cd5f98c4f 100644
--- a/msg.c
+++ b/msg.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: msg.c,v 1.14 2006/07/22 20:48:23 stevesk Exp $ */ 1/* $OpenBSD: msg.c,v 1.15 2006/08/03 03:34:42 deraadt Exp $ */
2/* 2/*
3 * Copyright (c) 2002 Markus Friedl. All rights reserved. 3 * Copyright (c) 2002 Markus Friedl. All rights reserved.
4 * 4 *
@@ -22,13 +22,17 @@
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25
25#include "includes.h" 26#include "includes.h"
26 27
27#include <sys/types.h> 28#include <sys/types.h>
29#include <sys/uio.h>
28 30
29#include <errno.h> 31#include <errno.h>
32#include <stdio.h>
30#include <string.h> 33#include <string.h>
31#include <unistd.h> 34#include <unistd.h>
35#include <stdarg.h>
32 36
33#include "buffer.h" 37#include "buffer.h"
34#include "log.h" 38#include "log.h"