summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/network/ent.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/network/ent.c')
-rw-r--r--libc-top-half/musl/src/network/ent.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/network/ent.c b/libc-top-half/musl/src/network/ent.c
new file mode 100644
index 0000000..c6e0123
--- /dev/null
+++ b/libc-top-half/musl/src/network/ent.c
@@ -0,0 +1,22 @@
+#include <netdb.h>
+
+void sethostent(int x)
+{
+}
+
+struct hostent *gethostent()
+{
+ return 0;
+}
+
+struct netent *getnetent()
+{
+ return 0;
+}
+
+void endhostent(void)
+{
+}
+
+weak_alias(sethostent, setnetent);
+weak_alias(endhostent, endnetent);