summaryrefslogtreecommitdiff
path: root/buffer.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-11-21 13:55:43 +1100
committerDamien Miller <djm@mindrot.org>2013-11-21 13:55:43 +1100
commit0600c7020f4fe68a780bd7cf21ff541a8d4b568a (patch)
tree5dfff2aba4491b66950c155598766141c1534c02 /buffer.c
parentb6a75b0b93b8faa6f79c3a395ab6c71f3f880b80 (diff)
downloadopenssh-git-0600c7020f4fe68a780bd7cf21ff541a8d4b568a.tar.gz
- dtucker@cvs.openbsd.org 2013/11/08 11:15:19
[bufaux.c bufbn.c buffer.c sftp-client.c sftp-common.c sftp-glob.c] [uidswap.c] Include stdlib.h for free() as per the man page.
Diffstat (limited to 'buffer.c')
-rw-r--r--buffer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/buffer.c b/buffer.c
index 007e7f94..9e7c40a5 100644
--- a/buffer.c
+++ b/buffer.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: buffer.c,v 1.33 2013/05/17 00:13:13 djm Exp $ */
+/* $OpenBSD: buffer.c,v 1.34 2013/11/08 11:15:19 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -19,6 +19,7 @@
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
+#include <stdlib.h>
#include "xmalloc.h"
#include "buffer.h"