make [U]INTn_C() macros have the right type...
[musl] / include / stdio_ext.h
1 #ifndef _STDIO_EXT_H
2 #define _STDIO_EXT_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #define FSETLOCKING_QUERY 0
9 #define FSETLOCKING_INTERNAL 1
10 #define FSETLOCKING_BYCALLER 2
11
12 void _flushlbf(void);
13 int __fsetlocking(FILE *, int);
14 int __fwriting(FILE *);
15 int __freading(FILE *);
16 int __freadable(FILE *);
17 int __fwritable(FILE *);
18 int __flbf(FILE *);
19 size_t __fbufsize(FILE *);
20 size_t __fpending(FILE *);
21 int __fpurge(FILE *);
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif