blob: 0b00ce11da82ba08403b207275ad6ecf923b7fb7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#define _GNU_SOURCE
#include <netdb.h>
struct servent *getservbyname(const char *name, const char *prots)
{
static struct servent se;
static long buf[32/sizeof(long)];
struct servent *res;
if (getservbyname_r(name, prots, &se, (void *)buf, sizeof buf, &res))
return 0;
return &se;
}
|