xref: /netbsd-src/external/bsd/ntp/dist/sntp/unity/ulib_teardown.c (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
1 /*	$NetBSD: ulib_teardown.c,v 1.1.1.1 2016/11/22 01:35:10 christos Exp $	*/
2 
3 /* default / lib implementation of 'tearDown()'
4  *
5  * SOLARIS does not support weak symbols -- need a real lib
6  * implemetation here.
7  */
8 
9 extern void tearDown(void);
10 
11 void tearDown(void)
12 {
13 	/* empty on purpose */
14 }
15 
16