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_teardown.c | |
parent | 6f2862ca3cb65eff13a8f228a0d447ecfc81cc68 (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 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 */ +} + |