]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/ntp/sntp/unity/ulib_setup.c
Fix multiple vulnerabilities of ntp.
[FreeBSD/releng/10.2.git] / contrib / ntp / sntp / unity / ulib_setup.c
1 /* default / lib implementation of 'setUp()'
2  *
3  * SOLARIS does not support weak symbols -- need a real lib
4  * implemetation here.
5  */
6
7 extern void setUp(void);
8
9 void setUp(void)
10 {
11         /* empty on purpose */
12 }
13
14 /* -*- that's all folks! -*- */