Home | History | Annotate | Line # | Download | only in unity
      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 
     11 void setUp(void)
     12 {
     13 	/* empty on purpose */
     14 }
     15 
     16 /* -*- that's all folks! -*- */
     17