diff options
Diffstat (limited to 'contrib/ntp/sntp/unity/ulib_teardown.c')
-rw-r--r-- | contrib/ntp/sntp/unity/ulib_teardown.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/contrib/ntp/sntp/unity/ulib_teardown.c b/contrib/ntp/sntp/unity/ulib_teardown.c new file mode 100644 index 000000000000..a36cdf942f8b --- /dev/null +++ b/contrib/ntp/sntp/unity/ulib_teardown.c @@ -0,0 +1,13 @@ +/* default / lib implementation of 'tearDown()' + * + * SOLARIS does not support weak symbols -- need a real lib + * implemetation here. + */ + +extern void tearDown(void); + +void tearDown(void) +{ + /* empty on purpose */ +} + |