fix rejection of dns responses with pointers past 512 byte offset
[musl] / arch / powerpc / atomic_arch.h
index 5b65cde..c267391 100644 (file)
@@ -30,14 +30,6 @@ static inline void a_post_llsc()
        __asm__ __volatile__ ("isync" : : : "memory");
 }
 
-#define a_store a_store
-static inline void a_store(volatile int *p, int v)
-{
-       a_pre_llsc();
-       *p = v;
-       a_post_llsc();
-}
-
 #define a_clz_32 a_clz_32
 static inline int a_clz_32(uint32_t x)
 {