Explorar o código

fix missing include in posix_madvise.c (compile error)

Rich Felker %!s(int64=14) %!d(string=hai) anos
pai
achega
53ab4e793b
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      src/mman/posix_madvise.c

+ 1 - 0
src/mman/posix_madvise.c

@@ -1,5 +1,6 @@
 #define _GNU_SOURCE
 #include <sys/mman.h>
+#include "syscall.h"
 
 int posix_madvise(void *addr, size_t len, int advice)
 {