mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-12-13 05:40:48 +00:00
16 lines
245 B
C
16 lines
245 B
C
extern void VerifyC(void);
|
|
#ifdef VERIFY_CXX
|
|
extern void VerifyCXX(void);
|
|
#endif
|
|
#include "VerifyFortran.h"
|
|
extern void VerifyFortran(void);
|
|
|
|
int main(void)
|
|
{
|
|
VerifyC();
|
|
#ifdef VERIFY_CXX
|
|
VerifyCXX();
|
|
#endif
|
|
VerifyFortran();
|
|
return 0;
|
|
}
|