remove use of endian.h from arch reloc.h headers, clean up
[musl] / arch / i386 / pthread_arch.h
index 7f38a56..6f600b9 100644 (file)
@@ -1,7 +1,7 @@
 static inline struct pthread *__pthread_self()
 {
        struct pthread *self;
-       __asm__ __volatile__ ("movl %%gs:0,%0" : "=r" (self) );
+       __asm__ ("movl %%gs:0,%0" : "=r" (self) );
        return self;
 }