Loading...
--- Libc/Libc-583/stdio/local.h
+++ Libc/Libc-498/stdio/local.h
@@ -59,12 +59,9 @@
extern wint_t __fgetwc(FILE *, locale_t);
extern wint_t __fputwc(wchar_t, FILE *, locale_t);
extern int __sflush(FILE *);
-extern FILE *__sfp(int); /* arg is whether to count against STREAM_MAX or not */
-extern void __sfprelease(FILE *); /* mark free and update count as needed */
+extern FILE *__sfp(void);
extern int __slbexpand(FILE *, size_t);
extern int __srefill(FILE *);
-extern int __srefill0(FILE *);
-extern int __srefill1(FILE *);
extern int __sread(void *, char *, int);
extern int __swrite(void *, char const *, int);
extern fpos_t __sseek(void *, fpos_t, int);
@@ -95,8 +92,7 @@
pthread_mutex_t fl_mutex; /* used for MT-safety */
pthread_t fl_owner; /* current owner */
int fl_count; /* recursive lock count */
- int orientation:2; /* orientation for fwide() */
- int counted:1; /* stream counted against STREAM_MAX */
+ int orientation; /* orientation for fwide() */
mbstate_t mbstate; /* multibyte conversion state */
};