summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2010-03-02 18:54:46 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2010-03-02 18:54:46 +0200
commit86d89d36fd3059f776b8ecb3ce8c9950acb17b45 (patch)
tree1aef260da9b75727b6a1a8ed1cae1c750d7cebed /tests
parent9bc39283e4cc6ab9e5913ccbf766998eab4ff093 (diff)
downloadpaxutils-86d89d36fd3059f776b8ecb3ce8c9950acb17b45.tar.gz
Add a missing include.
* tests/argcv.c [HAVE_CONFIG_H]: Include config.h
Diffstat (limited to 'tests')
-rw-r--r--tests/argcv.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/argcv.c b/tests/argcv.c
index dd6fe6c..dfde2ff 100644
--- a/tests/argcv.c
+++ b/tests/argcv.c
@@ -1,5 +1,5 @@
/* argcv.c - simple functions for parsing input based on whitespace
- Copyright (C) 1999, 2000, 2001, 2007, 2009 Free Software
+ Copyright (C) 1999, 2000, 2001, 2007, 2009, 2010 Free Software
Foundation, Inc.
This library is free software; you can redistribute it and/or
@@ -16,6 +16,9 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
#include <ctype.h>
#include <argcv.h>