summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/stdio_ext.h
diff options
context:
space:
mode:
authorTim Schumacher <timschumi@gmx.de>2021-11-07 17:19:16 +0100
committerAndreas Kling <kling@serenityos.org>2022-04-03 19:15:14 +0200
commit89ed0649f76801d224a3c10b8e7f38d64e5a15e6 (patch)
tree637f3b84db7ccdcbb05e0275d4bf6b18aadf9e98 /Userland/Libraries/LibC/stdio_ext.h
parent9b543ddb16a71287eb1fb51c24a13f46190b5433 (diff)
downloadserenity-89ed0649f76801d224a3c10b8e7f38d64e5a15e6.zip
LibC: Implement __freadahead
Diffstat (limited to 'Userland/Libraries/LibC/stdio_ext.h')
-rw-r--r--Userland/Libraries/LibC/stdio_ext.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/stdio_ext.h b/Userland/Libraries/LibC/stdio_ext.h
index 3dda605f6f..5484ee172f 100644
--- a/Userland/Libraries/LibC/stdio_ext.h
+++ b/Userland/Libraries/LibC/stdio_ext.h
@@ -15,6 +15,7 @@ int __freading(FILE*);
int __fwriting(FILE*);
void __fpurge(FILE*);
+size_t __freadahead(FILE*);
char const* __freadptr(FILE*, size_t*);
__END_DECLS