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 | 2a3488342441b3296995c8a9eca705a468d0eff0 (patch) | |
tree | 0ddd6422cb1fb658884e045a0527f7a24e4df58e /contrib/ntp/sntp/unity/ulib_setup.c | |
parent | 59570923bc07f0e74f90b47bd0e10dc5db508d4a (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! -*- */ |