From 4b1dcbb5f3b5fbb7e7bd3e1d218d278e4ce87a36 Mon Sep 17 00:00:00 2001 From: Phil Carns Date: Mon, 23 May 2016 23:27:48 -0400 Subject: [PATCH] on second thought, let's not mess with ungetc --- darshan-runtime/lib/darshan-stdio.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/darshan-runtime/lib/darshan-stdio.c b/darshan-runtime/lib/darshan-stdio.c index 7f2860e..3c9b81b 100644 --- a/darshan-runtime/lib/darshan-stdio.c +++ b/darshan-runtime/lib/darshan-stdio.c @@ -65,11 +65,12 @@ * int fsetpos(FILE *, const fpos_t *); DONE * int fsetpos64(FILE *, const fpos_t *); DONE * void rewind(FILE *); DONE - * 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. + * 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. + * - ungetc() */ #define _XOPEN_SOURCE 500 -- 2.26.2