From: Bruno Haible Date: Mon, 19 Feb 2007 03:37:20 +0000 (+0000) Subject: exit.h is replaced with . X-Git-Tag: v0.17~464 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8dac033df0dbfa570eb5834a6844db46d6e8c115;p=thirdparty%2Fgettext.git exit.h is replaced with . --- diff --git a/gnulib-local/ChangeLog b/gnulib-local/ChangeLog index a0adabe60..f989d3dbc 100644 --- a/gnulib-local/ChangeLog +++ b/gnulib-local/ChangeLog @@ -1,3 +1,13 @@ +2007-02-19 Bruno Haible + + * lib/closeout.c: Include instead of exit.h. + * lib/fd-ostream.oo.c: Don't include exit.h. + * lib/html-styled-ostream.oo.c: Include instead of exit.h. + * lib/iconv-ostream.oo.c: Don't include exit.h. + * lib/memory-ostream.oo.c: Likewise. + * lib/term-ostream.oo.c: Likewise. + * lib/xmalloc.c: Likewise. + 2007-02-12 Bruno Haible * modules/gettext-tools-misc (Files): Add m4/locale-fr.m4. diff --git a/gnulib-local/lib/closeout.c b/gnulib-local/lib/closeout.c index 7dc9ec269..46b5991f4 100644 --- a/gnulib-local/lib/closeout.c +++ b/gnulib-local/lib/closeout.c @@ -1,5 +1,5 @@ /* closeout.c - close standard output and standard error - Copyright (C) 1998-2006 Free Software Foundation, Inc. + Copyright (C) 1998-2007 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 @@ -21,11 +21,11 @@ #include "closeout.h" #include +#include #include #include "error.h" #include "fwriteerror.h" -#include "exit.h" #include "gettext.h" #define _(msgid) gettext (msgid) diff --git a/gnulib-local/lib/fd-ostream.oo.c b/gnulib-local/lib/fd-ostream.oo.c index 06a9e44d7..88d5100ed 100644 --- a/gnulib-local/lib/fd-ostream.oo.c +++ b/gnulib-local/lib/fd-ostream.oo.c @@ -1,5 +1,5 @@ /* Output stream referring to a file descriptor. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006-2007 Free Software Foundation, Inc. Written by Bruno Haible , 2006. This program is free software; you can redistribute it and/or modify @@ -27,7 +27,6 @@ #include #include "error.h" -#include "exit.h" #include "full-write.h" #include "xalloc.h" #include "gettext.h" diff --git a/gnulib-local/lib/html-styled-ostream.oo.c b/gnulib-local/lib/html-styled-ostream.oo.c index 3a322876f..c859df22e 100644 --- a/gnulib-local/lib/html-styled-ostream.oo.c +++ b/gnulib-local/lib/html-styled-ostream.oo.c @@ -1,5 +1,5 @@ /* Output stream for CSS styled text, producing HTML output. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006-2007 Free Software Foundation, Inc. Written by Bruno Haible , 2006. This program is free software; you can redistribute it and/or modify @@ -23,6 +23,7 @@ #include #include +#include #include #include "html-ostream.h" @@ -34,7 +35,6 @@ #include "error.h" #include "safe-read.h" -#include "exit.h" #include "xalloc.h" #include "gettext.h" diff --git a/gnulib-local/lib/iconv-ostream.oo.c b/gnulib-local/lib/iconv-ostream.oo.c index 12d142a64..c11ba079f 100644 --- a/gnulib-local/lib/iconv-ostream.oo.c +++ b/gnulib-local/lib/iconv-ostream.oo.c @@ -1,5 +1,5 @@ /* Output stream that converts the output to another encoding. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006-2007 Free Software Foundation, Inc. Written by Bruno Haible , 2006. This program is free software; you can redistribute it and/or modify @@ -30,7 +30,6 @@ #include "c-strcase.h" #include "error.h" -#include "exit.h" #include "xalloc.h" #include "gettext.h" diff --git a/gnulib-local/lib/memory-ostream.oo.c b/gnulib-local/lib/memory-ostream.oo.c index d9a6c0edc..499599dad 100644 --- a/gnulib-local/lib/memory-ostream.oo.c +++ b/gnulib-local/lib/memory-ostream.oo.c @@ -1,5 +1,5 @@ /* Output stream that accumulates the output in memory. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006-2007 Free Software Foundation, Inc. Written by Bruno Haible , 2006. This program is free software; you can redistribute it and/or modify @@ -25,7 +25,6 @@ #include #include "error.h" -#include "exit.h" #include "xalloc.h" #include "xsize.h" #include "gettext.h" diff --git a/gnulib-local/lib/term-ostream.oo.c b/gnulib-local/lib/term-ostream.oo.c index 351de6d82..c5448ea56 100644 --- a/gnulib-local/lib/term-ostream.oo.c +++ b/gnulib-local/lib/term-ostream.oo.c @@ -1,5 +1,5 @@ /* Output stream for attributed text, producing ANSI escape sequences. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006-2007 Free Software Foundation, Inc. Written by Bruno Haible , 2006. This program is free software; you can redistribute it and/or modify @@ -29,7 +29,6 @@ #include #include "error.h" -#include "exit.h" #include "fatal-signal.h" #include "full-write.h" #include "sigprocmask.h" diff --git a/gnulib-local/lib/xmalloc.c b/gnulib-local/lib/xmalloc.c index ed9758ed6..b38b495d8 100644 --- a/gnulib-local/lib/xmalloc.c +++ b/gnulib-local/lib/xmalloc.c @@ -1,5 +1,5 @@ /* xmalloc.c -- malloc with out of memory checking - Copyright (C) 1990-1996, 2000-2003, 2005-2006 Free Software Foundation, Inc. + Copyright (C) 1990-1996, 2000-2003, 2005-2007 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 @@ -23,7 +23,6 @@ #include #include "error.h" -#include "exit.h" #include "gettext.h" #define _(str) gettext (str)