Add Comeau defines

[SVN r10678]
This commit is contained in:
Beman Dawes
2001-07-20 20:27:41 +00:00
parent 79f2762aa2
commit e3e23aa159

View File

@ -70,6 +70,14 @@ int main()
// compilers
# ifdef __COMO__
cout << "__COMO__ defined as " << __COMO__ << "\n";
# endif
# ifdef __COMO_VERSION__
cout << "__COMO_VERSION__ defined as " << __COMO_VERSION__ << "\n";
# endif
# ifdef __GNUC__
cout << "__GNUC__ defined as " << __GNUC__ << "\n";
# endif
@ -78,6 +86,10 @@ int main()
cout << "__GNUC_MINOR__ defined as " << __GNUC_MINOR__ << "\n";
# endif
# ifdef __EDG__
cout << "__EDG__ defined as " << __EDG__ << "\n";
# endif
# ifdef __EDG_VERSION__
cout << "__EDG_VERSION__ defined as " << __EDG_VERSION__ << "\n";
# endif