* io/inquire.c: Include io.h before string.h.

From-SVN: r162788
This commit is contained in:
David Edelsohn 2010-07-31 21:37:25 +00:00 committed by David Edelsohn
parent da46381f2c
commit f32013906e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-07-31 David Edelsohn <edelsohn@gnu.org>
* io/inquire.c: Include io.h before string.h.
2010-07-28 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/44931

View File

@ -26,9 +26,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
/* Implement the non-IOLENGTH variant of the INQUIRY statement */
#include <string.h>
#include "io.h"
#include "unix.h"
#include <string.h>
static const char undefined[] = "UNDEFINED";