Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
darshan
darshan
Commits
05a68fd0
Commit
05a68fd0
authored
May 23, 2016
by
Philip Carns
Browse files
skip the unlocked functions
parent
551c339c
Changes
1
Hide whitespace changes
Inline
Side-by-side
darshan-runtime/lib/darshan-stdio.c
View file @
05a68fd0
...
@@ -43,7 +43,6 @@
...
@@ -43,7 +43,6 @@
* int fscanf(FILE *, const char *, ...); DONE
* int fscanf(FILE *, const char *, ...); DONE
* int vfscanf(FILE *, const char *, va_list); DONE
* int vfscanf(FILE *, const char *, va_list); DONE
* int getc(FILE *); DONE
* int getc(FILE *); DONE
* int getc_unlocked(FILE *);
* int getw(FILE *);
* int getw(FILE *);
*
*
* functions for writing data
* functions for writing data
...
@@ -53,7 +52,6 @@
...
@@ -53,7 +52,6 @@
* int fputs(const char *, FILE *);
* int fputs(const char *, FILE *);
* size_t fwrite(const void *, size_t, size_t, FILE *); DONE
* size_t fwrite(const void *, size_t, size_t, FILE *); DONE
* int putc(int, FILE *);
* int putc(int, FILE *);
* int putc_unlocked(int, FILE *);
* int putw(int, FILE *);
* int putw(int, FILE *);
* int vfprintf(FILE *, const char *, va_list);
* int vfprintf(FILE *, const char *, va_list);
*
*
...
@@ -64,6 +62,10 @@
...
@@ -64,6 +62,10 @@
* int fsetpos(FILE *, const fpos_t *);
* int fsetpos(FILE *, const fpos_t *);
* void rewind(FILE *);
* void rewind(FILE *);
* int ungetc(int, FILE *);
* int ungetc(int, FILE *);
*
* Omissions: _unlocked() variants of the various flush, read, and write
* functions. There are many of these, but they are not available on all
* systems and the man page advises not to use them.
*/
*/
#define _XOPEN_SOURCE 500
#define _XOPEN_SOURCE 500
...
...
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