2004-10-03 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
authorpbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 3 Oct 2004 12:04:15 +0000 (12:04 +0000)
committerpbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 3 Oct 2004 12:04:15 +0000 (12:04 +0000)
* intrinsics/abort.c ("libgfortran.h"): Move.
* intrinsics/date_and_time.c ("libgfortran.h"): Same.
* intrinsics/write.c ("libgfortran.h"): Same.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88444 138bc75d-0d04-0410-961f-82ee72b054a4

libgfortran/ChangeLog
libgfortran/intrinsics/abort.c
libgfortran/intrinsics/date_and_time.c
libgfortran/io/write.c

index 19c596f..29eca21 100644 (file)
@@ -1,3 +1,9 @@
+2004-10-03  Aaron W. LaFramboise <aaronavay62@aaronwl.com>
+
+       * intrinsics/abort.c ("libgfortran.h"): Move.
+       * intrinsics/date_and_time.c ("libgfortran.h"): Same.
+       * intrinsics/write.c ("libgfortran.h"): Same.
+
 2004-09-26  Tobias Schlueter  <tobis.schlueter@physik.uni-muenchen.de>
 
        PR libfortran/16137
index b042de4..cc2a422 100644 (file)
@@ -18,8 +18,8 @@ License along with libgfor; see the file COPYING.LIB.  If not,
 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.  */
 
-#include "libgfortran.h"
 #include <stdlib.h>
+#include "libgfortran.h"
 
 
 void prefix(abort) (void);
index 6a09b2a..63d18f5 100644 (file)
@@ -23,10 +23,9 @@ Boston, MA 02111-1307, USA.  */
 #include <sys/types.h>
 #include <string.h>
 #include <assert.h>
-#include "libgfortran.h"
-
 #include <stdio.h>
 #include <stdlib.h>
+#include "libgfortran.h"
 
 #undef HAVE_NO_DATE_TIME
 #if TIME_WITH_SYS_TIME
index 2392b3c..4e22b70 100644 (file)
@@ -21,10 +21,10 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #include <string.h>
 #include <float.h>
-#include "libgfortran.h"
-#include "io.h"
 #include <stdio.h>
 #include <stdlib.h>
+#include "libgfortran.h"
+#include "io.h"
 
 
 #define star_fill(p, n) memset(p, '*', n)