Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
f64acab6
Commit
f64acab6
authored
Jan 21, 2007
by
François-Xavier Coudert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* runtime/error.c: Include sys/time.h before sys/resource.h.
From-SVN: r121036
parent
bd943115
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
libgfortran/ChangeLog
+5
-1
libgfortran/runtime/error.c
+6
-4
No files found.
libgfortran/ChangeLog
View file @
f64acab6
2007-01-21 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* runtime/error.c: Include sys/time.h before sys/resource.h.
2007-01-21 Thomas Koenig <Thomas.Koenig@online.de>
PR libfortran/30525
* intrinsics/string_intrinsics.c(compare_string): Make
sure that comparisons are done unsigned.
200
6-12-09
Tobias Burnus <burnus@net-b.de>
200
7-01-21
Tobias Burnus <burnus@net-b.de>
PR libfortran/30015
* intrinsics/date_and_time.c (date_and_time): Fix case where time
...
...
libgfortran/runtime/error.c
View file @
f64acab6
...
...
@@ -48,14 +48,16 @@ Boston, MA 02110-1301, USA. */
#include <stdlib.h>
#endif
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
/* <sys/time.h> has to be included before <sys/resource.h> to work
around PR 30518; otherwise, MacOS 10.3.9 headers are just broken. */
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
#include "libgfortran.h"
#ifdef __MINGW32__
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment