diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-01-02 08:11:57 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-01-02 08:11:57 +0000 |
commit | e8f3e88946eccc37e02ea7dcc47573958a616ce0 (patch) | |
tree | 2aa9e81ee7d2ca3f58ec43a9080c3fad91d94e36 /usr.bin/cvs/xmalloc.c | |
parent | 248e03c0c539ded07d5b3b677501b02e88f38d94 (diff) |
#include's cleanup; ok joris@ niallo@.
Diffstat (limited to 'usr.bin/cvs/xmalloc.c')
-rw-r--r-- | usr.bin/cvs/xmalloc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/cvs/xmalloc.c b/usr.bin/cvs/xmalloc.c index 335ebe847d8..e4182a21d03 100644 --- a/usr.bin/cvs/xmalloc.c +++ b/usr.bin/cvs/xmalloc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xmalloc.c,v 1.4 2005/12/30 17:51:01 reyk Exp $ */ +/* $OpenBSD: xmalloc.c,v 1.5 2006/01/02 08:11:56 xsa Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -13,8 +13,7 @@ * called by a name other than "ssh" or "Secure Shell". */ -#include <stdlib.h> -#include <string.h> +#include "includes.h" #include "xmalloc.h" #include "log.h" |