Skip to content
Snippets Groups Projects
Commit 83c5f1b3 authored by Brad King's avatar Brad King
Browse files

ENH: Add support to C compiler identification for void return type from main. ...

ENH: Add support to C compiler identification for void return type from main.  Cross-compilers for embedded platforms may require it.
parent 0a9f041d
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,14 @@
#endif
/* Provide main() so the program can link. */
#if defined(__18CXX)
# define ID_VOID_MAIN
#endif
#ifdef ID_VOID_MAIN
void main() {}
#else
int main() { return 0; }
#endif
#if defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment