xref: /freebsd/contrib/ntp/sntp/unity/ulib_teardown.c (revision 0ed76ec8e66470e45d74395e12cf425dfb21d381)
1 /* default / lib implementation of 'tearDown()'
2  *
3  * SOLARIS does not support weak symbols -- need a real lib
4  * implemetation here.
5  */
6 
7 extern void tearDown(void);
8 
tearDown(void)9 void tearDown(void)
10 {
11 	/* empty on purpose */
12 }
13 
14