diff options
author | Xin LI <delphij@FreeBSD.org> | 2016-12-22 16:19:05 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2016-12-22 16:19:05 +0000 |
commit | a9b4be204689211fddaab97ddd6df73b8f44d222 (patch) | |
tree | c763313cbeed3fb4c2eaab81925e4718bb6d5a62 /contrib/ntp/sntp/unity/ulib_setup.c | |
parent | 6f2862ca3cb65eff13a8f228a0d447ecfc81cc68 (diff) |
Notes
Diffstat (limited to 'contrib/ntp/sntp/unity/ulib_setup.c')
-rw-r--r-- | contrib/ntp/sntp/unity/ulib_setup.c | 14 |
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! -*- */ |