blob: 112afe090e73a9d89a0723eb3acdd2db9ed8ac9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// the addons must provide the option and the toolchain of this project
#ifndef MYOPTION
# error the option of the custom-include addon is not found!
#endif
#ifndef MY_C6000
# error the toolchain of the custom-toolchain addon is not used!
#endif
int main(int argc, char** argv) {
return 0;
}
|