blob: a666cc0997c5fe9ac949c4796d98601a9b2c8fba [file] [log] [blame]
#define _GNU_SOURCE
#include <netdb.h>
struct servent* getservbyname(const char* name, const char* prots) {
static struct servent se;
static char* buf[2];
struct servent* res;
if (getservbyname_r(name, prots, &se, (void*)buf, sizeof buf, &res))
return 0;
return &se;
}