Does Ada have a preprocessor?
Posted
by ceretullis
on Stack Overflow
See other posts from Stack Overflow
or by ceretullis
Published on 2008-11-12T13:13:15Z
Indexed on
2010/04/10
14:23 UTC
Read the original article
Hit count: 416
ada
|crossplatform
To support multiple platforms in C/C++, one would use the preprocessor to enable conditional compiles. E.g.,
#ifdef _WIN32
#include <windows.h>
#endif
How can you do this in Ada? Does Ada have a preprocessor?
© Stack Overflow or respective owner