2008-10-12 18:41:06 +02:00
|
|
|
// Include code from a header that should not be compiled separately.
|
|
|
|
#include "A.hh"
|
|
|
|
|
2012-04-19 19:04:21 +03:00
|
|
|
#include <stdio.h>
|
2008-10-12 18:41:06 +02:00
|
|
|
int main()
|
|
|
|
{
|
2012-04-19 19:04:21 +03:00
|
|
|
printf("#define A_VALUE %d\n", A());
|
|
|
|
return 0;
|
2008-10-12 18:41:06 +02:00
|
|
|
}
|