summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorJean-Baptiste Boric <jblbeurope@gmail.com>2021-08-14 18:41:11 +0200
committerAndreas Kling <kling@serenityos.org>2021-10-23 15:06:33 +0200
commit68c457b6016d78d76705cbc3a5c64a40b7e280a4 (patch)
tree22f380b6ede5a04c5d5cf0cb9bb2f9e59519c319 /Userland
parent1d03f62444a969b44e566822b1501d34db74d382 (diff)
downloadserenity-68c457b6016d78d76705cbc3a5c64a40b7e280a4.zip
LibC: Add definition for FOPEN_MAX
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibC/stdio.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/stdio.h b/Userland/Libraries/LibC/stdio.h
index ca033fae4d..9c97eec31f 100644
--- a/Userland/Libraries/LibC/stdio.h
+++ b/Userland/Libraries/LibC/stdio.h
@@ -16,6 +16,7 @@
#include <sys/types.h>
#define FILENAME_MAX 1024
+#define FOPEN_MAX 1024
__BEGIN_DECLS
#ifndef EOF