X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fstdio.h;h=9b68d73d7f0c6a1618f34a04440b6dae0a582593;hb=effb3189773dc441285c056abf1ea78276698cb8;hp=9dc09f1ef82f3ec0ac2e5821a5610ead6d8c58b2;hpb=0ea57627a2a2422a349a0c8c840d09eac084a8ac;p=pdclib.old diff --git a/includes/stdio.h b/includes/stdio.h index 9dc09f1..9b68d73 100644 --- a/includes/stdio.h +++ b/includes/stdio.h @@ -854,7 +854,6 @@ int putchar_unlocked(int c); void clearerr_unlocked(FILE *stream); int feof_unlocked(FILE *stream); int ferror_unlocked(FILE *stream); -int fileno_unlocked(FILE *stream); int fflush_unlocked(FILE *stream); int fgetc_unlocked(FILE *stream); int fputc_unlocked(int c, FILE *stream); @@ -872,6 +871,7 @@ int fgetpos_unlocked( FILE * _PDCLIB_restrict stream, fpos_t * _PDCLIB_restrict int fsetpos_unlocked( FILE * stream, const fpos_t * pos ) _PDCLIB_nothrow; long int ftell_unlocked( FILE * stream ) _PDCLIB_nothrow; int fseek_unlocked( FILE * stream, long int offset, int whence ) _PDCLIB_nothrow; +void rewind_unlocked( FILE * stream ) _PDCLIB_nothrow; int puts_unlocked( const char * s ) _PDCLIB_nothrow; int ungetc_unlocked( int c, FILE * stream ) _PDCLIB_nothrow;