aboutsummaryrefslogtreecommitdiff
path: root/pk/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'pk/file.c')
-rw-r--r--pk/file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pk/file.c b/pk/file.c
index e2510d8..4b85372 100644
--- a/pk/file.c
+++ b/pk/file.c
@@ -7,9 +7,9 @@
#include "frontend.h"
#include "vm.h"
-#define MAX_FDS 64
+#define MAX_FDS 128
static atomic_t fds[MAX_FDS];
-#define MAX_FILES 64
+#define MAX_FILES 128
static file_t files[MAX_FILES] = {[0 ... MAX_FILES-1] = {-1,{0}}};
file_t *stdout, *stdin, *stderr;