diff options
author | Mustafa Ali CAN <mustafaali0732@gmail.com> | 2019-05-29 07:20:04 -0400 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-29 16:03:51 +0200 |
commit | 3ffb2ad4e0eaec6485e36561b22c742ff0de25d4 (patch) | |
tree | 7045adf650b89751621bbcdeb1aee335b6d4292c /LibC | |
parent | 5fa8858dfb36612da72e9ce453159c0ee09af093 (diff) | |
download | serenity-3ffb2ad4e0eaec6485e36561b22c742ff0de25d4.zip |
LibM LibC: add fixes for Lua port.
Diffstat (limited to 'LibC')
-rw-r--r-- | LibC/stdio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/LibC/stdio.h b/LibC/stdio.h index 54f64173d8..8da83d9cfb 100644 --- a/LibC/stdio.h +++ b/LibC/stdio.h @@ -22,6 +22,8 @@ __BEGIN_DECLS #define _IOLBF 1 #define _IONBF 2 +#define L_tmpnam 256 + struct __STDIO_FILE { int fd; int eof; |