aboutsummaryrefslogtreecommitdiff
path: root/pk/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'pk/file.c')
-rw-r--r--pk/file.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/pk/file.c b/pk/file.c
index e522685..9176f1a 100644
--- a/pk/file.c
+++ b/pk/file.c
@@ -1,11 +1,13 @@
// See LICENSE for license details.
-#include <string.h>
-#include <errno.h>
#include "file.h"
-#include "pk.h"
+#include "atomic.h"
+#include "mmap.h"
#include "frontend.h"
-#include "vm.h"
+#include "syscall.h"
+#include "pk.h"
+#include <string.h>
+#include <errno.h>
#define MAX_FDS 128
static file_t* fds[MAX_FDS];