diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-07 17:28:52 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-07 18:24:51 -0500 |
commit | f5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch) | |
tree | 93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/options/glibc/include/stdio_ext.h | |
parent | bd5969fc876a10b18613302db7087ef3c40f18e1 (diff) |
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/options/glibc/include/stdio_ext.h')
-rw-r--r-- | lib/mlibc/options/glibc/include/stdio_ext.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/lib/mlibc/options/glibc/include/stdio_ext.h b/lib/mlibc/options/glibc/include/stdio_ext.h deleted file mode 100644 index f22e05d..0000000 --- a/lib/mlibc/options/glibc/include/stdio_ext.h +++ /dev/null @@ -1,41 +0,0 @@ -#ifndef _STDIO_EXT_H -#define _STDIO_EXT_H - -#include <stddef.h> -#include <stdio.h> - -#define FSETLOCKING_INTERNAL 1 -#define FSETLOCKING_BYCALLER 2 -#define FSETLOCKING_QUERY 3 - -#ifdef __cplusplus -extern "C" { -#endif - -#ifndef __MLIBC_ABI_ONLY - -size_t __fbufsize(FILE *); -size_t __fpending(FILE *); -int __flbf(FILE *); -int __freadable(FILE *); -int __fwritable(FILE *); -int __freading(FILE *); -int __fwriting(FILE *); -int __fsetlocking(FILE *, int); -void __fpurge(FILE *); - -void _flushlbf(void); - -// The following functions are defined by musl. - -size_t __freadahead(FILE *); -const char *__freadptr(FILE *, size_t *); -void __fseterr(FILE *); - -#endif /* !__MLIBC_ABI_ONLY */ - -#ifdef __cplusplus -} -#endif - -#endif // _STDIO_EXT_H |