home *** CD-ROM | disk | FTP | other *** search
- /* protos.h
- This provides a switch between ANSI prototypes and
- non-ansi prototypes */
-
- #ifndef PROTOS_H
- #define PROTOS_H
-
- #if defined(MSDOS) | defined(TCC)
- #define ANSI
- #endif
-
- #ifdef ANSI
- #define _XX_(p) p
- #define _YY_(p) p
- #else
- #define _XX_(p) ()
- #define _YY_(p) ()
- /* some non-ANSI compilers accept 'const'; some don't */
- /* #define const */
- #endif
-
- #endif
-