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 | b06b7e647fe7b4eefbd29369cf0c24e1902bf72a (patch) | |
tree | d18590df36faea870c6827c64a75516475938e4d /contrib/ntp/sntp/unity/ulib_teardown.c | |
parent | 8c7ff71d356bdceffa6cd5b5017c65d0d63d9abc (diff) |
Notes
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 0000000000000..a36cdf942f8bc --- /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 */ +} + |