#include #include extern struct protoent __protoent_pw; extern char __protoent_buf[1000]; struct protoent *getprotobyname(const char *name) { struct protoent* tmp; if (getprotobyname_r(name,&__protoent_pw,__protoent_buf,sizeof(__protoent_buf),&tmp)==0) return tmp; return 0; }