Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
llvm-epi-0.8
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Roger Ferrer
llvm-epi-0.8
Commits
7aa5b663
Commit
7aa5b663
authored
12 years ago
by
Benjamin Kramer
Browse files
Options
Downloads
Patches
Plain Diff
Update linux stdio.h to support the recent additions to GCDAProfiling.
Hopefully unbreaks compiler-rt build on linux. llvm-svn: 164025
parent
2ae810a5
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler-rt/SDKs/linux/usr/include/stdio.h
+7
-0
7 additions, 0 deletions
compiler-rt/SDKs/linux/usr/include/stdio.h
with
7 additions
and
0 deletions
compiler-rt/SDKs/linux/usr/include/stdio.h
+
7
−
0
View file @
7aa5b663
...
@@ -26,10 +26,17 @@ extern struct _IO_FILE *stdin;
...
@@ -26,10 +26,17 @@ extern struct _IO_FILE *stdin;
extern
struct
_IO_FILE
*
stdout
;
extern
struct
_IO_FILE
*
stdout
;
extern
struct
_IO_FILE
*
stderr
;
extern
struct
_IO_FILE
*
stderr
;
#define SEEK_SET 0
/* set file offset to offset */
#define SEEK_CUR 1
/* set file offset to current plus offset */
#define SEEK_END 2
/* set file offset to EOF plus offset */
extern
int
fclose
(
FILE
*
);
extern
int
fclose
(
FILE
*
);
extern
int
fflush
(
FILE
*
);
extern
int
fflush
(
FILE
*
);
extern
FILE
*
fopen
(
const
char
*
restrict
,
const
char
*
restrict
);
extern
FILE
*
fopen
(
const
char
*
restrict
,
const
char
*
restrict
);
extern
int
fprintf
(
FILE
*
restrict
,
const
char
*
restrict
,
...);
extern
int
fprintf
(
FILE
*
restrict
,
const
char
*
restrict
,
...);
extern
size_t
fwrite
(
const
void
*
restrict
,
size_t
,
size_t
,
FILE
*
restrict
);
extern
size_t
fwrite
(
const
void
*
restrict
,
size_t
,
size_t
,
FILE
*
restrict
);
extern
size_t
fread
(
void
*
restrict
,
size_t
,
size_t
,
FILE
*
restrict
);
extern
long
ftell
(
FILE
*
);
extern
int
fseek
(
FILE
*
,
long
,
int
);
#endif
/* __STDIO_H__ */
#endif
/* __STDIO_H__ */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment