1310419Sdelphij/* default / lib implementation of 'tearDown()'
2310419Sdelphij *
3310419Sdelphij * SOLARIS does not support weak symbols -- need a real lib
4310419Sdelphij * implemetation here.
5310419Sdelphij */
6310419Sdelphij
7310419Sdelphijextern void tearDown(void);
8310419Sdelphij
9310419Sdelphijvoid tearDown(void)
10310419Sdelphij{
11310419Sdelphij	/* empty on purpose */
12310419Sdelphij}
13310419Sdelphij
14