From: Bruno Haible Date: Sat, 17 Jan 2009 16:12:42 +0000 (+0100) Subject: Fix compilation error on HP-UX 11.00. X-Git-Tag: v0.1~6455 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=fc75b897899e64bed6a931c93b967e698da2d213;p=gnulib.git Fix compilation error on HP-UX 11.00. --- diff --git a/ChangeLog b/ChangeLog index 9a2c3fc38..b00193fd0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2009-01-17 Bruno Haible + Fix compilation error on HP-UX 11.00, present since 2008-09-24. + * lib/fopen.c: Include and . + +2009-01-17 Bruno Haible + Avoid test-fflush2.sh failure on mingw. * tests/test-fflush2.c: Include binary-io.h. (main): Put standard input into binary mode. diff --git a/lib/fopen.c b/lib/fopen.c index b20d3bcd5..72610bd9b 100644 --- a/lib/fopen.c +++ b/lib/fopen.c @@ -1,5 +1,5 @@ /* Open a stream to a file. - Copyright (C) 2007-2008 Free Software Foundation, Inc. + Copyright (C) 2007-2009 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 @@ -36,6 +36,8 @@ orig_fopen (const char *filename, const char *mode) #include #include #include +#include +#include FILE * rpl_fopen (const char *filename, const char *mode)