1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-09-01 02:34:55 +00:00

Unconditionally include <config.h> in unit tests.

* tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
* tests/test-allocsa.c, tests/test-arcfour.c,
tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
tests/test-array_list.c, tests/test-array_oset.c,
tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
test-avltreehash_list.c, test-base64.c, test-binary-io.c,
test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
test-md5.c, test-memmem.c, test-printf-posix.c,
test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
test-strcasestr.c, test-striconv.c, test-striconveh.c,
test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
test-vasnprintf-posix2.c, test-vasnprintf.c,
test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
test-vfprintf-posix.c, test-vprintf-posix.c,
test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
test-xvasprintf.c: Likewise.
This commit is contained in:
Eric Blake
2007-05-28 16:49:41 +00:00
parent 45c1293768
commit c0fea97ccf
92 changed files with 144 additions and 294 deletions
+33
View File
@@ -22,6 +22,39 @@
2007-05-28 Eric Blake <ebb9@byu.net>
Unconditionally include <config.h> in unit tests.
* tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
* tests/test-allocsa.c, tests/test-arcfour.c,
tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
tests/test-array_list.c, tests/test-array_oset.c,
tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
test-avltreehash_list.c, test-base64.c, test-binary-io.c,
test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
test-md5.c, test-memmem.c, test-printf-posix.c,
test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
test-strcasestr.c, test-striconv.c, test-striconveh.c,
test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
test-vasnprintf-posix2.c, test-vasnprintf.c,
test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
test-vfprintf-posix.c, test-vprintf-posix.c,
test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
test-xvasprintf.c: Likewise.
* lib/allocsa.h (safe_alloca): Avoid compiler warning.
2007-05-28 Bruno Haible <bruno@clisp.org>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <alloca.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2005. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "allocsa.h"
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -4
View File
@@ -18,9 +18,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007, based on test code
by David MacKenzie <djm@gnu.ai.mit.edu>. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "argmatch.h"
@@ -104,4 +102,3 @@ main (int argc, char *argv[])
return 0;
}
+21 -23
View File
@@ -16,9 +16,7 @@
with this program; 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 <config.h>
#include "argp.h"
@@ -45,12 +43,12 @@ struct test_args
int group_1_1_option;
};
static struct argp_option group1_option[] =
static struct argp_option group1_option[] =
{
{ NULL, 0, NULL, 0, "Option Group 1", 0},
{ "verbose", 'v', NULL, 0, "Simple option without arguments", 1 },
{ "file", 'f', "FILE", 0, "Option with a mandatory argument", 1 },
{ "input", 0, NULL, OPTION_ALIAS, NULL, 1 },
{ "input", 0, NULL, OPTION_ALIAS, NULL, 1 },
{ "hidden", 'H', "FILE", OPTION_HIDDEN, "Hidden option", 1 },
{ NULL, 0, NULL, 0, NULL, 0 }
};
@@ -65,15 +63,15 @@ group1_parser (int key, char *arg, struct argp_state *state)
case 'v':
args->verbose++;
break;
case 'f':
args->file = arg;
break;
case 'H':
args->hidden = arg;
break;
default:
return ARGP_ERR_UNKNOWN;
}
@@ -93,7 +91,7 @@ struct argp_child group1_child = {
};
static struct argp_option group1_1_option[] =
static struct argp_option group1_1_option[] =
{
{ NULL, 0, NULL, 0, "Option Group 1.1", 0},
{ "cantiga", 'C', NULL, 0, "create a cantiga" },
@@ -130,7 +128,7 @@ struct argp_child group1_1_child = {
};
static struct argp_option group2_option[] =
static struct argp_option group2_option[] =
{
{ NULL, 0, NULL, 0, "Option Group 2", 0},
{ "option", 'O', NULL, 0, "An option", 1 },
@@ -152,12 +150,12 @@ group2_parser (int key, char *arg, struct argp_state *state)
case 'O':
args->opt = 1;
break;
case 'o':
args->optional_set = 1;
args->optional = arg;
break;
default:
return ARGP_ERR_UNKNOWN;
}
@@ -177,7 +175,7 @@ struct argp_child group2_child = {
};
static struct argp_option group2_1_option[] =
static struct argp_option group2_1_option[] =
{
{ NULL, 0, NULL, 0, "Option Group 2.1", 0},
{ "poem", 'p', NULL, 0, "create a poem" },
@@ -212,12 +210,12 @@ struct argp_child group2_1_child = {
"",
2
};
static struct argp_option main_options[] =
{
{ NULL, 0, NULL, 0, "Main options", 0},
{ "test", 't', NULL, 0, NULL, 1 },
{ "test", 't', NULL, 0, NULL, 1 },
{ NULL, 0, NULL, 0, NULL, 0 }
};
@@ -226,7 +224,7 @@ parse_opt (int key, char *arg, struct argp_state *state)
{
struct test_args *args = state->input;
int i;
switch (key)
{
case ARGP_KEY_INIT:
@@ -237,7 +235,7 @@ parse_opt (int key, char *arg, struct argp_state *state)
case 't':
args->test = 1;
break;
default:
return ARGP_ERR_UNKNOWN;
}
@@ -403,7 +401,7 @@ test10(struct argp *argp)
INIT_TEST2 (10, "--optional", "ARG");
test_optional(argp, argc, argv, &test_args, NULL, "ARG");
}
void
test11(struct argp *argp)
{
@@ -416,7 +414,7 @@ test12(struct argp *argp)
{
INIT_TEST3 (12, "--option", "--optional=OPT", "FILE");
test_optional(argp, argc, argv, &test_args, "OPT", "FILE");
}
}
void
test13(struct argp *argp)
@@ -465,7 +463,7 @@ main (int argc, char **argv)
group2_children[0] = group2_1_child;
group2_children[1].argp = NULL;
group2_argp.children = group2_children;
argp_children[0] = group1_child;
argp_children[1] = group2_child;
argp_children[2].argp = NULL;
@@ -473,11 +471,11 @@ main (int argc, char **argv)
if (argc > 0)
{
struct test_args test_args;
init_args(test_args);
struct test_args test_args;
init_args(test_args);
return argp_parse (&test_argp, argc, argv, 0, NULL, &test_args);
}
for (fun = test_fun; *fun; fun++)
(*fun) (&test_argp);
+1 -3
View File
@@ -16,9 +16,7 @@
along with this program; 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 <config.h>
#include "gl_array_list.h"
+1 -3
View File
@@ -16,9 +16,7 @@
along with this program; 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 <config.h>
#include "gl_array_oset.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdlib.h>
#include <unistd.h>
+1 -3
View File
@@ -16,9 +16,7 @@
along with this program; 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 <config.h>
#include "gl_avltree_list.h"
+1 -3
View File
@@ -16,9 +16,7 @@
along with this program; 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 <config.h>
#include "gl_avltree_oset.h"
+1 -3
View File
@@ -16,9 +16,7 @@
along with this program; 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 <config.h>
#include "gl_avltreehash_list.h"
+1 -3
View File
@@ -16,9 +16,7 @@
with this program; 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 <config.h>
#include <stddef.h>
#include <stdio.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2005. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "binary-io.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2005. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "c-ctype.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "c-strcase.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "c-strcasestr.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "c-strcase.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "c-strstr.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "canonicalize.h"
+1 -3
View File
@@ -16,9 +16,7 @@
along with this program; 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 <config.h>
#include "gl_carray_list.h"
+1 -3
View File
@@ -18,9 +18,7 @@
/* Written by Simon Josefsson. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "crc.h"
+1 -3
View File
@@ -19,9 +19,7 @@
/* Adapted for gnulib by Simon Josefsson, based on Libgcrypt. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -15,9 +15,7 @@
with this program; 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 <config.h>
#include "dirname.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Eric Blake, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <unistd.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -18,9 +18,7 @@
/* Written by Simon Josefsson. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "gc.h"
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -16,9 +16,7 @@
with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include "getpass.h"
+1 -3
View File
@@ -18,9 +18,7 @@
/* Written by Simon Josefsson. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -18,9 +18,7 @@
/* Written by Simon Josefsson. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#if HAVE_ICONV
# include <iconv.h>
+1 -3
View File
@@ -16,9 +16,7 @@
along with this program; 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 <config.h>
#include "gl_linked_list.h"
+1 -3
View File
@@ -16,9 +16,7 @@
along with this program; 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 <config.h>
#include "gl_linkedhash_list.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2005. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#if USE_POSIX_THREADS || USE_SOLARIS_THREADS || USE_PTH_THREADS || USE_WIN32_THREADS
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -18,9 +18,7 @@
/* Written by Simon Josefsson. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -19,9 +19,7 @@
/* Written by Simon Josefsson. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -19,9 +19,7 @@
/* Written by Simon Josefsson. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
+1 -3
View File
@@ -16,9 +16,7 @@
along with this program; 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 <config.h>
#include "gl_rbtree_list.h"
+1 -3
View File
@@ -16,9 +16,7 @@
along with this program; 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 <config.h>
#include "gl_rbtree_oset.h"
+1 -3
View File
@@ -16,9 +16,7 @@
along with this program; 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 <config.h>
#include "gl_rbtreehash_list.h"
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "read-file.h"
+1 -3
View File
@@ -17,9 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2006. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
/* Whether to enable pedantic checks. */
#define DO_PEDANTIC 0
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <string.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "striconv.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "striconveh.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "striconveha.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2005. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#if USE_POSIX_THREADS || USE_SOLARIS_THREADS || USE_PTH_THREADS || USE_WIN32_THREADS
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "vasnprintf.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "vasnprintf.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "vasnprintf.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
+1 -3
View File
@@ -18,9 +18,7 @@
/* Written by Bruno Haible. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "verify.h"
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include <stdio.h>
+1 -3
View File
@@ -17,9 +17,7 @@
/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <config.h>
#include "xvasprintf.h"