mirror of
https://github.com/boostorg/build.git
synced 2026-01-26 06:22:26 +00:00
12 lines
100 B
C++
12 lines
100 B
C++
|
|
#include <a.h>
|
|
|
|
int main()
|
|
{
|
|
#ifdef RELEASE
|
|
release();
|
|
#else
|
|
debug();
|
|
#endif
|
|
}
|