implement reallocarray
[musl] / src / network / getservbyname.c
index 0b00ce1..dd30376 100644 (file)
@@ -4,7 +4,7 @@
 struct servent *getservbyname(const char *name, const char *prots)
 {
        static struct servent se;
-       static long buf[32/sizeof(long)];
+       static char *buf[2];
        struct servent *res;
        if (getservbyname_r(name, prots, &se, (void *)buf, sizeof buf, &res))
                return 0;