summaryrefslogtreecommitdiff
path: root/contrib/ntp/sntp/unity/ulib_setup.c
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2016-12-22 16:19:05 +0000
committerXin LI <delphij@FreeBSD.org>2016-12-22 16:19:05 +0000
commita9b4be204689211fddaab97ddd6df73b8f44d222 (patch)
treec763313cbeed3fb4c2eaab81925e4718bb6d5a62 /contrib/ntp/sntp/unity/ulib_setup.c
parent6f2862ca3cb65eff13a8f228a0d447ecfc81cc68 (diff)
Notes
Diffstat (limited to 'contrib/ntp/sntp/unity/ulib_setup.c')
-rw-r--r--contrib/ntp/sntp/unity/ulib_setup.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/ntp/sntp/unity/ulib_setup.c b/contrib/ntp/sntp/unity/ulib_setup.c
new file mode 100644
index 000000000000..41a3b38f2873
--- /dev/null
+++ b/contrib/ntp/sntp/unity/ulib_setup.c
@@ -0,0 +1,14 @@
+/* default / lib implementation of 'setUp()'
+ *
+ * SOLARIS does not support weak symbols -- need a real lib
+ * implemetation here.
+ */
+
+extern void setUp(void);
+
+void setUp(void)
+{
+ /* empty on purpose */
+}
+
+/* -*- that's all folks! -*- */