21 lines
283 B
C
Raw Normal View History

/*
* Test supplied by Ulrich. Verify that we can correctly force 'a'
* to local scope.
*/
2012-01-05 23:13:27 +01:00
#include "vers.h"
int
__a_internal (int e)
{
return e + 10;
}
int
__b_internal (int e)
{
return e + 42;
}
2012-01-05 23:13:27 +01:00
SYMVER(__a_internal, hide_a@@VERS_1);
SYMVER(__b_internal, show_b@@VERS_1);