summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Bertalan <dani@danielbertalan.dev>2021-06-21 11:56:44 +0200
committerAndreas Kling <kling@serenityos.org>2021-06-21 12:21:03 +0200
commite5afe7a8a35452118d64671f32370d80bf7c7f48 (patch)
treeecc098015263f7bab259154cbe37bc8277212385
parent9a2c80c791756652fe92f2cd22cbf82fc1ab95ad (diff)
downloadserenity-e5afe7a8a35452118d64671f32370d80bf7c7f48.zip
LibC: Add P_tmpdir macro
-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 b4ff5a8e75..ecd1393fc9 100644
--- a/Userland/Libraries/LibC/stdio.h
+++ b/Userland/Libraries/LibC/stdio.h
@@ -30,6 +30,7 @@ __BEGIN_DECLS
#define _IONBF 2
#define L_tmpnam 256
+#define P_tmpdir "/tmp"
extern FILE* stdin;
extern FILE* stdout;