mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
15 lines
228 B
C
15 lines
228 B
C
|
#include "wrap.h"
|
||
|
#include <netdb.h>
|
||
|
|
||
|
struct hostent *
|
||
|
m3_gethostbyname(const char *name)
|
||
|
{
|
||
|
struct hostent *result;
|
||
|
|
||
|
ENTER_CRITICAL;
|
||
|
MAKE_READABLE(name);
|
||
|
result = gethostbyname(name);
|
||
|
EXIT_CRITICAL;
|
||
|
return result;
|
||
|
}
|