summaryrefslogtreecommitdiff
path: root/usr.bin/rcs/xmalloc.c
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2007-02-27 07:59:14 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2007-02-27 07:59:14 +0000
commita50c6629c4b87021063cca8ee33d033693044f19 (patch)
tree9cd41a61ed2caed4fdd960c4a6f86d18750f2427 /usr.bin/rcs/xmalloc.c
parent9f064f1ae44f3419a81d855a6c20ccf1003319b2 (diff)
As done in OpenCVS, general includes cleanup sweep. OK otto@.
Diffstat (limited to 'usr.bin/rcs/xmalloc.c')
-rw-r--r--usr.bin/rcs/xmalloc.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/usr.bin/rcs/xmalloc.c b/usr.bin/rcs/xmalloc.c
index 370ab0f99e7..31953559787 100644
--- a/usr.bin/rcs/xmalloc.c
+++ b/usr.bin/rcs/xmalloc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xmalloc.c,v 1.2 2006/04/29 05:31:28 ray Exp $ */
+/* $OpenBSD: xmalloc.c,v 1.3 2007/02/27 07:59:13 xsa Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -13,7 +13,12 @@
* called by a name other than "ssh" or "Secure Shell".
*/
-#include "includes.h"
+#include <err.h>
+#include <limits.h>
+#include <stdarg.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
#include "xmalloc.h"