diff options
author | djm <djm> | 2006-08-05 01:02:17 +0000 |
---|---|---|
committer | djm <djm> | 2006-08-05 01:02:17 +0000 |
commit | 92ae76a9c647a4c88df8f43d10e5b7a0d1570c30 (patch) | |
tree | 8181b6de594757162055e642d82d5b69867a5ffe /xmalloc.c | |
parent | 72d00e249740748883827d2a01d7339077838c93 (diff) | |
download | openssh-92ae76a9c647a4c88df8f43d10e5b7a0d1570c30.tar.gz |
- stevesk@cvs.openbsd.org 2006/07/26 02:35:17
[atomicio.c auth.c dh.c authfile.c buffer.c clientloop.c kex.c]
[groupaccess.c gss-genr.c kexgexs.c misc.c monitor.c monitor_mm.c]
[packet.c scp.c serverloop.c session.c sftp-client.c sftp-common.c]
[sftp-server.c sftp.c ssh-add.c ssh-agent.c ssh-keygen.c sshlogin.c]
[uidswap.c xmalloc.c]
move #include <sys/param.h> out of includes.h
Diffstat (limited to 'xmalloc.c')
-rw-r--r-- | xmalloc.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: xmalloc.c,v 1.23 2006/07/22 20:48:23 stevesk Exp $ */ +/* $OpenBSD: xmalloc.c,v 1.24 2006/07/26 02:35:17 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -15,6 +15,8 @@ #include "includes.h" +#include <sys/param.h> + #include <stdarg.h> #include <string.h> |