summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/xmalloc.c
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2007-02-22 06:42:11 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2007-02-22 06:42:11 +0000
commitfdb3a045215ae0f4100b4c7708a5670099b83442 (patch)
tree47294792b1c58aa77639fa5ae9e7bbbc31456090 /usr.bin/cvs/xmalloc.c
parentf33dff9ae83d109c167ed3dc9fde1970dd10bae5 (diff)
general includes cleanup sweep. ok joris@ niallo@
Diffstat (limited to 'usr.bin/cvs/xmalloc.c')
-rw-r--r--usr.bin/cvs/xmalloc.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.bin/cvs/xmalloc.c b/usr.bin/cvs/xmalloc.c
index 9883da91ef9..0a778cadbb7 100644
--- a/usr.bin/cvs/xmalloc.c
+++ b/usr.bin/cvs/xmalloc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xmalloc.c,v 1.7 2007/01/29 16:22:29 xsa Exp $ */
+/* $OpenBSD: xmalloc.c,v 1.8 2007/02/22 06:42:10 otto Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -13,10 +13,13 @@
* called by a name other than "ssh" or "Secure Shell".
*/
-#include "includes.h"
+#include <limits.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
-#include "xmalloc.h"
#include "log.h"
+#include "xmalloc.h"
void *
xmalloc(size_t size)