summaryrefslogtreecommitdiff
path: root/src/shared/memfd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/memfd.h')
-rw-r--r--src/shared/memfd.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/shared/memfd.h b/src/shared/memfd.h
index 02cb3978f..8f02b0ff5 100644
--- a/src/shared/memfd.h
+++ b/src/shared/memfd.h
@@ -24,11 +24,12 @@
#include <inttypes.h>
#include <sys/types.h>
#include <stdio.h>
+
#include "macro.h"
#include "util.h"
-int memfd_new(int *fd, const char *name);
-int memfd_new_and_map(int *fd, const char *name, size_t sz, void **p);
+int memfd_new(const char *name);
+int memfd_new_and_map(const char *name, size_t sz, void **p);
int memfd_map(int fd, uint64_t offset, size_t size, void **p);