+2007-02-19 Bruno Haible <bruno@clisp.org>
+
+ * lib/closeout.c: Include <stdlib.h> instead of exit.h.
+ * lib/fd-ostream.oo.c: Don't include exit.h.
+ * lib/html-styled-ostream.oo.c: Include <stdlib.h> 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 <bruno@clisp.org>
* modules/gettext-tools-misc (Files): Add m4/locale-fr.m4.
/* 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
#include "closeout.h"
#include <stdio.h>
+#include <stdlib.h>
#include <errno.h>
#include "error.h"
#include "fwriteerror.h"
-#include "exit.h"
#include "gettext.h"
#define _(msgid) gettext (msgid)
/* 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 <bruno@clisp.org>, 2006.
This program is free software; you can redistribute it and/or modify
#include <string.h>
#include "error.h"
-#include "exit.h"
#include "full-write.h"
#include "xalloc.h"
#include "gettext.h"
/* 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 <bruno@clisp.org>, 2006.
This program is free software; you can redistribute it and/or modify
#include <errno.h>
#include <fcntl.h>
+#include <stdlib.h>
#include <unistd.h>
#include "html-ostream.h"
#include "error.h"
#include "safe-read.h"
-#include "exit.h"
#include "xalloc.h"
#include "gettext.h"
/* 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 <bruno@clisp.org>, 2006.
This program is free software; you can redistribute it and/or modify
#include "c-strcase.h"
#include "error.h"
-#include "exit.h"
#include "xalloc.h"
#include "gettext.h"
/* 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 <bruno@clisp.org>, 2006.
This program is free software; you can redistribute it and/or modify
#include <string.h>
#include "error.h"
-#include "exit.h"
#include "xalloc.h"
#include "xsize.h"
#include "gettext.h"
/* 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 <bruno@clisp.org>, 2006.
This program is free software; you can redistribute it and/or modify
#include <string.h>
#include "error.h"
-#include "exit.h"
#include "fatal-signal.h"
#include "full-write.h"
#include "sigprocmask.h"
/* 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
#include <stdlib.h>
#include "error.h"
-#include "exit.h"
#include "gettext.h"
#define _(str) gettext (str)