diff options
author | 2013-11-08 11:15:19 +0000 | |
---|---|---|
committer | 2013-11-08 11:15:19 +0000 | |
commit | e5fb9d1d0c4d8285929c4e253e34222f43c4eb86 (patch) | |
tree | 205449fec27dbe89f79351acb642a795d358b006 /usr.bin/ssh/buffer.c | |
parent | add ibm serveraid m1115 (diff) | |
download | wireguard-openbsd-e5fb9d1d0c4d8285929c4e253e34222f43c4eb86.tar.xz wireguard-openbsd-e5fb9d1d0c4d8285929c4e253e34222f43c4eb86.zip |
Include stdlib.h for free() as per the man page.
Diffstat (limited to 'usr.bin/ssh/buffer.c')
-rw-r--r-- | usr.bin/ssh/buffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/buffer.c b/usr.bin/ssh/buffer.c index de32c0e0a86..1b9cd8a3f4e 100644 --- a/usr.bin/ssh/buffer.c +++ b/usr.bin/ssh/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 @@ -17,6 +17,7 @@ #include <stdio.h> #include <string.h> #include <stdarg.h> +#include <stdlib.h> #include "xmalloc.h" #include "buffer.h" |