aboutsummaryrefslogtreecommitdiffstats
path: root/foobar/portable/openbsd-compat/libasr/sethostent.c
diff options
context:
space:
mode:
authorGilles Chehade <gilles@poolp.org>2020-04-30 02:01:35 +0200
committerGilles Chehade <gilles@poolp.org>2020-04-30 02:01:35 +0200
commit6fb3965e81d9e4278ee5d96c2d68c014df1f3802 (patch)
treec3c895a4a39d4888e0ff978c97587120712a6b9d /foobar/portable/openbsd-compat/libasr/sethostent.c
parentplug ubuntu-gcc10 to CI (diff)
downloadOpenSMTPD-6fb3965e81d9e4278ee5d96c2d68c014df1f3802.tar.xz
OpenSMTPD-6fb3965e81d9e4278ee5d96c2d68c014df1f3802.zip
move
Diffstat (limited to 'foobar/portable/openbsd-compat/libasr/sethostent.c')
-rw-r--r--foobar/portable/openbsd-compat/libasr/sethostent.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/foobar/portable/openbsd-compat/libasr/sethostent.c b/foobar/portable/openbsd-compat/libasr/sethostent.c
new file mode 100644
index 00000000..61fa3e2f
--- /dev/null
+++ b/foobar/portable/openbsd-compat/libasr/sethostent.c
@@ -0,0 +1,36 @@
+/* $OpenBSD: sethostent.c,v 1.2 2018/04/28 15:09:35 schwarze Exp $ */
+/*
+ * Copyright (c) 2012 Eric Faurot <eric@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <netdb.h>
+#include <stddef.h>
+
+void
+sethostent(int stayopen)
+{
+}
+
+void
+endhostent(void)
+{
+}
+
+struct hostent *
+gethostent(void)
+{
+ h_errno = NETDB_INTERNAL;
+ return NULL;
+}