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