repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update case mappings to unicode 12.1.0
[musl.git]
/
src
/
network
/
ent.c
blob
c6e012306dd8b1674f2a54a45e6151833d60356a
1
#include <netdb.h>
2
3
void
sethostent
(
int
x
)
4
{
5
}
6
7
struct
hostent
*
gethostent
()
8
{
9
return
0
;
10
}
11
12
struct
netent
*
getnetent
()
13
{
14
return
0
;
15
}
16
17
void
endhostent
(
void
)
18
{
19
}
20
21
weak_alias
(
sethostent
,
setnetent
);
22
weak_alias
(
endhostent
,
endnetent
);