You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
340 B
19 lines
340 B
#if SCANNING_CONTROL
|
|
# if SCAN_AT_TARGET_LEVEL
|
|
# ifndef CMAKE_SCANNED_THIS_SOURCE
|
|
# error "This file should have been scanned"
|
|
# endif
|
|
# else
|
|
# ifdef CMAKE_SCANNED_THIS_SOURCE
|
|
# error "This file should not have been scanned"
|
|
# endif
|
|
# endif
|
|
#endif
|
|
|
|
int join();
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
return join();
|
|
}
|