summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_mem_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nxt_mem_map.h')
-rw-r--r--src/nxt_mem_map.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/nxt_mem_map.h b/src/nxt_mem_map.h
index a4a10cc4..e529aff8 100644
--- a/src/nxt_mem_map.h
+++ b/src/nxt_mem_map.h
@@ -43,17 +43,14 @@
#define NXT_MEM_MAP_FILE (MAP_SHARED | NXT_MEM_MAP_PREFAULT)
-#define \
- nxt_mem_map_file_ctx_t(ctx)
+#define nxt_mem_map_file_ctx_t(ctx)
-#define \
-nxt_mem_map(addr, ctx, len, protection, flags, fd, offset) \
+#define nxt_mem_map(addr, ctx, len, protection, flags, fd, offset) \
nxt_mem_mmap(addr, len, protection, flags, fd, offset)
-#define \
-nxt_mem_unmap(addr, ctx, len) \
+#define nxt_mem_unmap(addr, ctx, len) \
nxt_mem_munmap(addr, len)