summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libugly/getprotobynumber.c
blob: 6170753e243961fbff4e05659bf2f87441bd8dc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <string.h>
#include <netdb.h>

extern struct protoent __protoent_pw;
extern char __protoent_buf[1000];

struct protoent *getprotobynumber(int proto) {
  struct protoent* tmp;
  if (getprotobynumber_r(proto,&__protoent_pw,__protoent_buf,sizeof(__protoent_buf),&tmp)==0)
    return tmp;
  return 0;
}