2006-08-01 10:49:15 -04:00
|
|
|
// Include code from a header that should not be compiled separately.
|
|
|
|
#include "A.hh"
|
|
|
|
|
2011-12-23 15:34:19 -05:00
|
|
|
#include <stdio.h>
|
2004-10-22 17:05:25 -04:00
|
|
|
int main()
|
|
|
|
{
|
2011-12-23 15:34:19 -05:00
|
|
|
printf("#define A_VALUE %d\n", A());
|
|
|
|
return 0;
|
2004-10-22 17:05:25 -04:00
|
|
|
}
|