xref: /netbsd-src/external/bsd/ntp/dist/sntp/unity/ulib_setup.c (revision cdfa2a7ef92791ba9db70a584a1d904730e6fb46)
1 /*	$NetBSD: ulib_setup.c,v 1.2 2020/05/25 20:47:35 christos Exp $	*/
2 
3 /* default / lib implementation of 'setUp()'
4  *
5  * SOLARIS does not support weak symbols -- need a real lib
6  * implemetation here.
7  */
8 
9 extern void setUp(void);
10 
setUp(void)11 void setUp(void)
12 {
13 	/* empty on purpose */
14 }
15 
16 /* -*- that's all folks! -*- */
17