22 lines
275 B
C
Executable File
22 lines
275 B
C
Executable File
/* compiler.h for vbcc */
|
|
|
|
#ifndef __COMPILER_H__
|
|
#define __COMPILER_H__ 1
|
|
|
|
#ifndef cdecl
|
|
#define cdecl
|
|
#endif
|
|
|
|
#ifndef __CDECL
|
|
#define __CDECL cdecl
|
|
#endif
|
|
|
|
#ifndef __cdecl
|
|
#define __cdecl cdecl
|
|
#endif
|
|
|
|
#define __BEGIN_DECLS
|
|
#define __END_DECLS
|
|
|
|
#endif /* __COMPILER_H__ */
|