summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019-12-20 21:27:39 -0500
committerRich Felker <dalias@aerifal.cx>2019-12-20 21:27:39 -0500
commitd6a62addce7e07416a5bc889f39594e67d785a0d (patch)
tree0e07342b7c602d467c8cf301e67956013b7497d1
parent2412638bb39eb799b2600393bbd71cca8ae96bb2 (diff)
downloadmusl-d6a62addce7e07416a5bc889f39594e67d785a0d.tar.gz
revert unwanted and inadvertent change that slipped into mmap.c
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.
-rw-r--r--src/mman/mmap.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mman/mmap.c b/src/mman/mmap.c
index 2da11b87..eff88d82 100644
--- a/src/mman/mmap.c
+++ b/src/mman/mmap.c
@@ -1,4 +1,3 @@
-#define SYSCALL_NO_TLS 1
#include <unistd.h>
#include <sys/mman.h>
#include <errno.h>