From 98088e6a60a525b3c189a72cb0c1ab8784d8e4c0 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 3 Jul 2005 07:13:31 +0000 Subject: [PATCH] Include stdio-safer.h first, to check interface. Don't bother including stdio.h, since stdio-safer.h does. --- lib/fopen-safer.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/fopen-safer.c b/lib/fopen-safer.c index 4b74b8f3bf..ccaf1219f0 100644 --- a/lib/fopen-safer.c +++ b/lib/fopen-safer.c @@ -1,5 +1,5 @@ /* Invoke fopen, but avoid some glitches. - Copyright (C) 2001, 2004 Free Software Foundation, Inc. + Copyright (C) 2001, 2004, 2005 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,17 +21,16 @@ # include #endif +#include "stdio-safer.h" + +#include #include -#include +#include "unistd-safer.h" #ifndef STDERR_FILENO # define STDERR_FILENO 2 #endif -#include -#include -#include - /* Like fopen, but do not return stdin, stdout, or stderr. */ FILE * -- 2.47.3