summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sftp-glob.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2013-11-08 11:15:20 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2013-11-08 11:15:20 +0000
commit2f53442c1add96ab3321a8736b770cb0477aee08 (patch)
tree8a6bb3041c0ce567b4db7a3108d6120cb562fb5f /usr.bin/ssh/sftp-glob.c
parentebd75d6dca0278b1401487f594a15c6b0864fb8b (diff)
Include stdlib.h for free() as per the man page.
Diffstat (limited to 'usr.bin/ssh/sftp-glob.c')
-rw-r--r--usr.bin/ssh/sftp-glob.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sftp-glob.c b/usr.bin/ssh/sftp-glob.c
index a2a59bbcca4..1c4d477fba2 100644
--- a/usr.bin/ssh/sftp-glob.c
+++ b/usr.bin/ssh/sftp-glob.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sftp-glob.c,v 1.25 2013/11/08 00:39:15 djm Exp $ */
+/* $OpenBSD: sftp-glob.c,v 1.26 2013/11/08 11:15:19 dtucker Exp $ */
/*
* Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
*
@@ -20,6 +20,7 @@
#include <dirent.h>
#include <glob.h>
+#include <stdlib.h>
#include <string.h>
#include "xmalloc.h"