+2003-10-09 Bruno Haible <bruno@clisp.org>
+
+ * relocatable.c: Include xalloc.h instead of xmalloc.h.
+
2003-10-07 Bruno Haible <bruno@clisp.org>
Assume ANSI C.
#ifdef NO_XMALLOC
# define xmalloc malloc
#else
-# include "xmalloc.h"
+# include "xalloc.h"
#endif
#if defined _WIN32 || defined __WIN32__
+2003-10-09 Bruno Haible <bruno@clisp.org>
+
+ * Makefile.am (libgrt_a_SOURCES): Use xalloc.h instead of xmalloc.h.
+
2003-09-16 Bruno Haible <bruno@clisp.org>
Portability to SunOS 4.
../../gettext-tools/lib/progname.h ../../gettext-tools/lib/progname.c ../../gettext-tools/lib/progreloc.c \
../../gettext-tools/lib/strtoul.c \
../../gettext-tools/lib/unlocked-io.h \
- ../../gettext-tools/lib/xmalloc.h ../../gettext-tools/lib/xmalloc.c ../../gettext-tools/lib/xstrdup.c \
+ ../../gettext-tools/lib/xalloc.h ../../gettext-tools/lib/xmalloc.c ../../gettext-tools/lib/xstrdup.c \
../../gettext-tools/lib/xreadlink.h ../../gettext-tools/lib/xreadlink.c
# Sources that are compiled only on platforms that lack the functions.
+2003-10-09 Bruno Haible <bruno@clisp.org>
+
+ * envsubst.c: Include xalloc.h instead of xmalloc.h.
+ * gettext.c: Likewise.
+ * ngettext.c: Likewise.
+
2003-09-16 Bruno Haible <bruno@clisp.org>
* envsubst.c: Include stdbool.h.
#include "progname.h"
#include "relocatable.h"
#include "basename.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "gettext.h"
#include "progname.h"
#include "relocatable.h"
#include "basename.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "gettext.h"
#include "progname.h"
#include "relocatable.h"
#include "basename.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "gettext.h"
+2003-10-09 Bruno Haible <bruno@clisp.org>
+
+ * xalloc.h: Renamed from xmalloc.h.
+ * classpath.c: Include xalloc.h instead of xmalloc.h.
+ * concatpath.c: Likewise.
+ * fatal-signal.c: Likewise.
+ * findprog.c: Likewise.
+ * fstrcmp.c: Likewise.
+ * hash.c: Likewise.
+ * javacomp.c: Likewise.
+ * javaexec.c: Likewise.
+ * progreloc.c: Likewise.
+ * relocatable.c: Likewise.
+ * sh-quote.c: Likewise.
+ * w32spawn.h: Likewise.
+ * wait-process.c: Likewise.
+ * xgetcwd.c: Likewise.
+ * xmalloc.c: Likewise.
+ * xreadlink.c: Likewise.
+ * xstrdup.c: Likewise.
+ * Makefile.am (libgettextlib_la_SOURCES): Use xalloc.h instead of
+ xmalloc.h.
+ * Makefile.msvc: Reorder accordingly.
+ * Makefile.vms: Likewise.
+
2003-10-07 Bruno Haible <bruno@clisp.org>
More reliable subprocess cleanup.
ucs4-utf8.h ucs4-utf16.h \
unlocked-io.h \
wait-process.h wait-process.c \
+ xalloc.h xmalloc.c xstrdup.c \
xerror.h xerror.c \
- xmalloc.h xmalloc.c xstrdup.c \
xreadlink.h xreadlink.c \
xsetenv.h xsetenv.c
strtoul.obj \
tmpdir.obj \
wait-process.obj \
+ xalloc.obj xstrdup.obj \
xerror.obj \
- xmalloc.obj xstrdup.obj \
xsetenv.obj \
\
fnmatch.obj \
wait-process.obj : wait-process.c
$(CC) $(INCLUDES) $(CFLAGS) $(PICFLAGS) -c wait-process.c
-xerror.obj : xerror.c
- $(CC) $(INCLUDES) $(CFLAGS) $(PICFLAGS) -c xerror.c
-
xmalloc.obj : xmalloc.c
$(CC) $(INCLUDES) $(CFLAGS) $(PICFLAGS) -c xmalloc.c
xstrdup.obj : xstrdup.c
$(CC) $(INCLUDES) $(CFLAGS) $(PICFLAGS) -c xstrdup.c
+xerror.obj : xerror.c
+ $(CC) $(INCLUDES) $(CFLAGS) $(PICFLAGS) -c xerror.c
+
xsetenv.obj : xsetenv.c
$(CC) $(INCLUDES) $(CFLAGS) $(PICFLAGS) -c xsetenv.c
strtoul.obj, \
tmpdir.obj, \
wait-process.obj, \
- xerror.obj, \
xmalloc.obj, xstrdup.obj, \
+ xerror.obj, \
xsetenv.obj, \
\
fnmatch.obj, \
wait-process.obj : wait-process.c
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) wait-process.c
-xerror.obj : xerror.c
- $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) xerror.c
-
xmalloc.obj : xmalloc.c
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) xmalloc.c
xstrdup.obj : xstrdup.c
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) xstrdup.c
+xerror.obj : xerror.c
+ $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) xerror.c
+
xsetenv.obj : xsetenv.c
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) xsetenv.c
#include <string.h>
#include "xsetenv.h"
-#include "xmalloc.h"
+#include "xalloc.h"
/* Separator in PATH like lists of pathnames. */
#if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__
/* Construct a full pathname from a directory and a filename.
- Copyright (C) 2001-2002 Free Software Foundation, Inc.
+ Copyright (C) 2001-2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
#include <string.h>
-#include "xmalloc.h"
+#include "xalloc.h"
#include "stpcpy.h"
/* Concatenate a directory pathname, a relative pathname and an optional
# include <unistd.h>
#endif
-#include "xmalloc.h"
+#include "xalloc.h"
#define SIZEOF(a) (sizeof(a) / sizeof(a[0]))
# include <unistd.h>
#endif
-#include "xmalloc.h"
+#include "xalloc.h"
#include "pathname.h"
#include <stdio.h>
#include <limits.h>
-#include "xmalloc.h"
+#include "xalloc.h"
/*
/* hash - implement simple hashing table with string based keys.
- Copyright (C) 1994-1995, 2000-2002 Free Software Foundation, Inc.
+ Copyright (C) 1994-1995, 2000-2003 Free Software Foundation, Inc.
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, October 1994.
This program is free software; you can redistribute it and/or modify
# include <values.h>
#endif
-#include "xmalloc.h"
+#include "xalloc.h"
#define obstack_chunk_alloc xmalloc
#define obstack_chunk_free free
#include "xsetenv.h"
#include "sh-quote.h"
#include "safe-read.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "error.h"
#include "gettext.h"
#include "xsetenv.h"
#include "sh-quote.h"
#include "pathname.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "error.h"
#include "gettext.h"
#ifdef NO_XMALLOC
# define xmalloc malloc
#else
-# include "xmalloc.h"
+# include "xalloc.h"
#endif
/* Pathname support.
#ifdef NO_XMALLOC
# define xmalloc malloc
#else
-# include "xmalloc.h"
+# include "xalloc.h"
#endif
#if defined _WIN32 || defined __WIN32__
#include <string.h>
#include "strpbrk.h"
-#include "xmalloc.h"
+#include "xalloc.h"
/* Must quote the program name and arguments since Unix shells interpret
#include <errno.h>
#include "strpbrk.h"
-#include "xmalloc.h"
+#include "xalloc.h"
/* Duplicates a file handle, making the copy uninheritable. */
static int
#include "error.h"
#include "exit.h"
#include "fatal-signal.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "gettext.h"
#define _(str) gettext (str)
# define getcwd(Buf, Max) getwd (Buf)
#endif
-#include "xmalloc.h"
+#include "xalloc.h"
/* Return the current directory, newly allocated, arbitrarily long.
Return NULL and set errno on error. */
#endif
/* Specification. */
-#include "xmalloc.h"
+#include "xalloc.h"
#include <stdlib.h>
#ifdef NO_XMALLOC
# define xmalloc malloc
#else
-# include "xmalloc.h"
+# include "xalloc.h"
#endif
/* Call readlink to get the symbolic link value of FILENAME.
/* xstrdup.c -- copy a string with out of memory checking
- Copyright (C) 1990, 1996, 2000-2002 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1996, 2000-2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
#endif
/* Specification. */
-#include "xmalloc.h"
+#include "xalloc.h"
#include <string.h>
+2003-10-09 Bruno Haible <bruno@clisp.org>
+
+ * test-names.c: Include xalloc.h instead of xmalloc.h.
+
2003-05-22 Bruno Haible <bruno@clisp.org>
* gettext-0.12.1 released.
/* Test the Unicode character name functions.
- Copyright (C) 2000-2002 Free Software Foundation, Inc.
+ Copyright (C) 2000-2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
#include <string.h>
#include "exit.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "uniname.h"
/* The names according to the UnicodeData.txt file, modified to contain the
+2003-10-09 Bruno Haible <bruno@clisp.org>
+
+ * format-awk.c: Include xalloc.h instead of xmalloc.h.
+ * format-c.c: Likewise.
+ * format-elisp.c: Likewise.
+ * format-gcc-internal.c: Likewise.
+ * format-java.c: Likewise.
+ * format-librep.c: Likewise.
+ * format-lisp.c: Likewise.
+ * format-pascal.c: Likewise.
+ * format-perl.c: Likewise.
+ * format-perl-brace.c: Likewise.
+ * format-php.c: Likewise.
+ * format-python.c: Likewise.
+ * format-sh.c: Likewise.
+ * format-tcl.c: Likewise.
+ * format-ycp.c: Likewise.
+ * gettext-po.c: Likewise.
+ * hostname.c: Likewise.
+ * message.c: Likewise.
+ * msgexec.c: Likewise.
+ * msgfilter.c: Likewise.
+ * msgfmt.c: Likewise.
+ * msggrep.c: Likewise.
+ * msginit.c: Likewise.
+ * msgl-cat.c: Likewise.
+ * msgl-english.c: Likewise.
+ * msgl-iconv.c: Likewise.
+ * msgmerge.c: Likewise.
+ * open-po.c: Likewise.
+ * po-gram-gen.y: Likewise.
+ * po-hash-gen.y: Likewise.
+ * po-lex.c: Likewise.
+ * read-mo.c: Likewise.
+ * read-po-abstract.c: Likewise.
+ * read-po.c: Likewise.
+ * read-properties.c: Likewise.
+ * str-list.c: Likewise.
+ * write-java.c: Likewise.
+ * write-mo.c: Likewise.
+ * write-po.c: Likewise.
+ * write-properties.c: Likewise.
+ * write-tcl.c: Likewise.
+ * x-awk.c: Likewise.
+ * x-c.c: Likewise.
+ * x-elisp.c: Likewise.
+ * x-glade.c: Likewise.
+ * x-java.c: Likewise.
+ * x-librep.c: Likewise.
+ * x-lisp.c: Likewise.
+ * x-perl.c: Likewise.
+ * x-php.c: Likewise.
+ * x-po.c: Likewise.
+ * x-python.c: Likewise.
+ * x-rst.c: Likewise.
+ * x-sh.c: Likewise.
+ * x-smalltalk.c: Likewise.
+ * x-tcl.c: Likewise.
+ * x-ycp.c: Likewise.
+ * xgettext.c: Likewise.
+
2003-10-07 Bruno Haible <bruno@clisp.org>
More reliable subprocess cleanup.
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "error.h"
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "error.h"
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "error.h"
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "error.h"
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "error.h"
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "error.h"
#include "format.h"
#include "c-ctype.h"
#include "gcd.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "minmax.h"
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "error.h"
#include <string.h>
#include "format.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "error.h"
#include "error-progname.h"
#include "gettext.h"
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "error.h"
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "error.h"
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "error.h"
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "format-invalid.h"
#include "error.h"
#include "error-progname.h"
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "error.h"
#include "format.h"
#include "c-ctype.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "xerror.h"
#include "format-invalid.h"
#include "error.h"
#include <stdlib.h>
#include "message.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "read-po.h"
#include "progname.h"
#include "relocatable.h"
#include "basename.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "gettext.h"
#include "fstrcmp.h"
#include "hash.h"
-#include "xmalloc.h"
+#include "xalloc.h"
const char *const format_language[NFORMATS] =
#include "basename.h"
#include "message.h"
#include "read-po.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "full-write.h"
#include "findprog.h"
#include "read-po.h"
#include "write-po.h"
#include "msgl-charset.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "findprog.h"
#include "pipe.h"
#include "basename.h"
#include "xerror.h"
#include "format.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "plural-exp.h"
#include "plural-table.h"
#include "strstr.h"
#include "write-po.h"
#include "str-list.h"
#include "msgl-charset.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "full-write.h"
#include "findprog.h"
#include "localcharset.h"
#include "po-time.h"
#include "plural-table.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "pathname.h"
#include "xerror.h"
#include "msgl-ascii.h"
#include "msgl-equal.h"
#include "msgl-iconv.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "strstr.h"
#include "basename.h"
#include "exit.h"
/* Message translation initialization for English.
- Copyright (C) 2001-2002 Free Software Foundation, Inc.
+ Copyright (C) 2001-2003 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software; you can redistribute it and/or modify
#include <string.h>
-#include "xmalloc.h"
+#include "xalloc.h"
msgdomain_list_ty *
#include "message.h"
#include "po-charset.h"
#include "msgl-ascii.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "strstr.h"
#include "exit.h"
#include "gettext.h"
#include "read-po.h"
#include "write-po.h"
#include "format.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "strstr.h"
#include "exit.h"
#include "strcase.h"
#include "dir-list.h"
#include "pathname.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "error.h"
#include "gettext.h"
#include "po-lex.h"
#include "po-charset.h"
#include "error.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "gettext.h"
#include "read-po-abstract.h"
#include <stdbool.h>
#include <string.h>
-#include "xmalloc.h"
+#include "xalloc.h"
#include "read-po-abstract.h"
/* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
#include "vasprintf.h"
#include "gettext.h"
#include "po-charset.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "error.h"
#include "error-progname.h"
/* Reading binary .mo files.
- Copyright (C) 1995-1998, 2000-2002 Free Software Foundation, Inc.
+ Copyright (C) 1995-1998, 2000-2003 Free Software Foundation, Inc.
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, April 1995.
This program is free software; you can redistribute it and/or modify
#include "gmo.h"
#include "error.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "binary-io.h"
#include "exit.h"
#include "message.h"
#include "po-gram.h"
#include "po-hash.h"
#include "read-properties.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "gettext.h"
/* Local variables. */
#include "open-po.h"
#include "po-charset.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "gettext.h"
#define _(str) gettext (str)
#include "error-progname.h"
#include "message.h"
#include "read-po-abstract.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "msgl-ascii.h"
#include "utf16-ucs4.h"
#include <stdlib.h>
#include <string.h>
-#include "xmalloc.h"
+#include "xalloc.h"
/* Initialize an empty list of strings. */
#include "pathmax.h"
#include "plural-exp.h"
#include "po-charset.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "pathname.h"
#include "fatal-signal.h"
#include "fwriteerror.h"
#include "hash.h"
#include "message.h"
#include "format.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "binary-io.h"
#include "fwriteerror.h"
#include "exit.h"
#include "linebreak.h"
#include "msgl-ascii.h"
#include "write-properties.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "strstr.h"
#include "fwriteerror.h"
#include "exit.h"
#include "po-charset.h"
#include "utf8-ucs4.h"
#include "write-po.h"
-#include "xmalloc.h"
+#include "xalloc.h"
/* The format of the Java .properties files is documented in the JDK
documentation for class java.util.Properties. In the case of .properties
#include "message.h"
#include "msgl-iconv.h"
#include "po-charset.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "pathname.h"
#include "fwriteerror.h"
#include "exit.h"
#include "x-awk.h"
#include "error.h"
#include "error-progname.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "gettext.h"
#include "x-c.h"
#include "error.h"
#include "error-progname.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "hash.h"
#include "gettext.h"
#include "xgettext.h"
#include "x-elisp.h"
#include "error.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "hash.h"
#include "c-ctype.h"
#include "xerror.h"
#include "basename.h"
#include "progname.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "hash.h"
#include "po-charset.h"
#include "xgettext.h"
#include "x-java.h"
#include "error.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "hash.h"
#include "po-charset.h"
#include "xgettext.h"
#include "x-librep.h"
#include "error.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "hash.h"
#include "gettext.h"
#include "xgettext.h"
#include "x-lisp.h"
#include "error.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "hash.h"
#include "gettext.h"
#include "x-perl.h"
#include "error.h"
#include "error-progname.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "po-charset.h"
#include "ucs4-utf8.h"
#include "xgettext.h"
#include "x-php.h"
#include "error.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "gettext.h"
#include "xgettext.h"
#include "x-po.h"
#include "x-properties.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "read-po.h"
#include "po-lex.h"
#include "gettext.h"
#include "x-python.h"
#include "error.h"
#include "error-progname.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "po-charset.h"
#include "uniname.h"
#include "x-rst.h"
#include "error.h"
#include "error-progname.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "gettext.h"
#include "xgettext.h"
#include "x-sh.h"
#include "error.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "hash.h"
#include "gettext.h"
#include "xgettext.h"
#include "x-smalltalk.h"
#include "error.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "gettext.h"
#include "xgettext.h"
#include "x-tcl.h"
#include "error.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "hash.h"
#include "c-ctype.h"
#include "xgettext.h"
#include "x-ycp.h"
#include "error.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "gettext.h"
#include "relocatable.h"
#include "basename.h"
#include "xerror.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "strstr.h"
#include "xerror.h"
#include "exit.h"
+2003-10-09 Bruno Haible <bruno@clisp.org>
+
+ * tstgettext.c: Include xalloc.h instead of xmalloc.h.
+
2003-10-05 Bruno Haible <bruno@clisp.org>
* xgettext-4: Update expected test result.
#include "progname.h"
#include "relocatable.h"
#include "basename.h"
-#include "xmalloc.h"
+#include "xalloc.h"
#include "exit.h"
#include "xsetenv.h"