change ldso path file logic to replace rather than add to search path
[oweals/musl.git] / src / network / inet_pton.c
index bb16fb90b1b884fd74522dc719b12b78c64d1af0..5c4850a685519f44200333acc882c2b6529b8e94 100644 (file)
@@ -14,7 +14,7 @@ static int hexval(unsigned c)
        return -1;
 }
 
-int inet_pton(int af, const char *s, void *a0)
+int inet_pton(int af, const char *restrict s, void *restrict a0)
 {
        uint16_t ip[8];
        unsigned char *a = a0;