aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/posix/netdb.h
blob: 8f76a95b767e2947f86ea1020f7b7f80b8725a7c (plain)
1
2
3
4
5
6
7
8
9
#ifndef _POSIX_NETDB_H_
#define _POSIX_NETDB_H_

struct hostent {
    char *h_addr;
};
#define gethostbyname(buf) NULL

#endif /* _POSIX_NETDB_H_ */