blob: 1fff91d005866288d53a05d50b7dfe10629e9009 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#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;
}
|