summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/xmalloc.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@cvs.openbsd.org>2006-08-01 23:22:49 +0000
committerKevin Steves <stevesk@cvs.openbsd.org>2006-08-01 23:22:49 +0000
commit8bca0b445803e5a882bac2c04ef075d7d4591fa8 (patch)
tree3d471639f947b7495aa216ba79b46fda1354ae06 /usr.bin/ssh/xmalloc.c
parent537747624b6d9a808c56233517e47cc629b23e30 (diff)
move #include <stdio.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/xmalloc.c')
-rw-r--r--usr.bin/ssh/xmalloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/xmalloc.c b/usr.bin/ssh/xmalloc.c
index 77e2d27c700..6aea495ef93 100644
--- a/usr.bin/ssh/xmalloc.c
+++ b/usr.bin/ssh/xmalloc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xmalloc.c,v 1.25 2006/07/26 13:57:17 stevesk Exp $ */
+/* $OpenBSD: xmalloc.c,v 1.26 2006/08/01 23:22:48 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -18,6 +18,7 @@
#include <sys/param.h>
#include <stdarg.h>
+#include <stdio.h>
#include <stdlib.h>
#include <string.h>