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
16b97540
Commit
16b97540
authored
Jan 02, 2001
by
Kaveh R. Ghazi
Committed by
Kaveh Ghazi
Jan 02, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tsystem.h: Define HAVE_DECL_GETOPT.
From-SVN: r38623
parent
b12ebe84
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletions
+16
-1
gcc/ChangeLog
+4
-0
gcc/tsystem.h
+12
-1
No files found.
gcc/ChangeLog
View file @
16b97540
2001-01-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* tsystem.h: Define HAVE_DECL_GETOPT.
2001-01-02 Philip Blundell <pb@futuretv.com>
* config/arm/linux-gas.h (CLEAR_INSN_CACHE): Avoid illegal clobber
...
...
gcc/tsystem.h
View file @
16b97540
/* Get common system includes and various definitions and declarations
based on target macros.
Copyright (C) 2000 Free Software Foundation, Inc.
Copyright (C) 2000
, 2001
Free Software Foundation, Inc.
This file is part of GNU CC.
...
...
@@ -22,6 +22,17 @@ Boston, MA 02111-1307, USA. */
#ifndef __GCC_TSYSTEM_H__
#define __GCC_TSYSTEM_H__
/* System headers (e.g. stdio.h, stdlib.h, unistd.h) sometimes
indirectly include getopt.h. Our -I flags will cause gcc's gnu
getopt.h to be included, not the platform's copy. In the default
case, gnu getopt.h will provide us with a no-argument prototype
which will generate -Wstrict-prototypes warnings. None of the
target files actually use getopt, so it is safe to tell gnu
getopt.h we never need this prototype. */
#ifndef HAVE_DECL_GETOPT
#define HAVE_DECL_GETOPT 1
#endif
/* GCC supplies this header. */
#include <stddef.h>
...
...
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