summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/stdio_ext.h
diff options
context:
space:
mode:
authorTim Schumacher <timschumi@gmx.de>2021-11-07 17:26:50 +0100
committerAndreas Kling <kling@serenityos.org>2022-04-03 19:15:14 +0200
commit4f706d819af572f44a184d5f6e6b6bdae167c5ed (patch)
treed3b3cb58bd675025d411a58dec7e28306bef316a /Userland/Libraries/LibC/stdio_ext.h
parent89ed0649f76801d224a3c10b8e7f38d64e5a15e6 (diff)
downloadserenity-4f706d819af572f44a184d5f6e6b6bdae167c5ed.zip
LibC: Implement __freadptrinc
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 5484ee172f..9966f2262f 100644
--- a/Userland/Libraries/LibC/stdio_ext.h
+++ b/Userland/Libraries/LibC/stdio_ext.h
@@ -17,5 +17,6 @@ void __fpurge(FILE*);
size_t __freadahead(FILE*);
char const* __freadptr(FILE*, size_t*);
+void __freadptrinc(FILE*, size_t);
__END_DECLS