summaryrefslogtreecommitdiff
path: root/xmalloc.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-08-05 11:34:19 +1000
committerDamien Miller <djm@mindrot.org>2006-08-05 11:34:19 +1000
commite7a1e5cf630d635b253f0c0bada8c8886436297f (patch)
treebc82ccd5819445dbbfa7049e5f0ffa9882433062 /xmalloc.c
parent8dbffe7904c4e28b7a741064a468f1cd98c0ad81 (diff)
- stevesk@cvs.openbsd.org 2006/07/26 13:57:17
[authfd.c authfile.c dh.c canohost.c channels.c clientloop.c compat.c] [hostfile.c kex.c log.c misc.c moduli.c monitor.c packet.c readpass.c] [scp.c servconf.c session.c sftp-server.c sftp.c ssh-add.c ssh-agent.c] [ssh-keygen.c ssh-keyscan.c ssh-keysign.c ssh.c sshconnect.c] [sshconnect1.c sshd.c xmalloc.c] move #include <stdlib.h> out of includes.h
Diffstat (limited to 'xmalloc.c')
-rw-r--r--xmalloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmalloc.c b/xmalloc.c
index 511a9e12a..77e2d27c7 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: xmalloc.c,v 1.24 2006/07/26 02:35:17 stevesk Exp $ */ 1/* $OpenBSD: xmalloc.c,v 1.25 2006/07/26 13:57:17 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -18,6 +18,7 @@
18#include <sys/param.h> 18#include <sys/param.h>
19 19
20#include <stdarg.h> 20#include <stdarg.h>
21#include <stdlib.h>
21#include <string.h> 22#include <string.h>
22 23
23#include "xmalloc.h" 24#include "xmalloc.h"