revert unwanted and inadvertent change that slipped into mmap.c
authorRich Felker <dalias@aerifal.cx>
Sat, 21 Dec 2019 02:27:39 +0000 (21:27 -0500)
committerRich Felker <dalias@aerifal.cx>
Sat, 21 Dec 2019 02:27:39 +0000 (21:27 -0500)
commit ae388becb529428ac926da102f1d025b3c3968da accidentally
introduced #define SYSCALL_NO_TLS 1 in mmap.c, which was probably a
stale change left around from unrelated syscall timing measurements.
reverse it.

src/mman/mmap.c

index 2da11b8..eff88d8 100644 (file)
@@ -1,4 +1,3 @@
-#define SYSCALL_NO_TLS 1
 #include <unistd.h>
 #include <sys/mman.h>
 #include <errno.h>