home *** CD-ROM | disk | FTP | other *** search
- /*
- * protect non-ANSI C Compilers from function prototype arguments
- *
- * $Header: cproto.h 1.1 92/09/29 $
- * $Log: cproto.h,v $
- * Revision 1.1 92/09/29 18:02:31 duplain
- * Initial revision
- *
- */
-
- #ifndef __CPROTO_H
- #define __CPROTO_H
-
- #if defined (__STDC__) || defined(__cplusplus)
- #define P__(s) s
- #define ANSI_C
- #else /* PCC compiler */
- #define P__(s) ()
- #undef ANSI_C
- #endif /* ANSI compiler */
-
- #endif /* __CPROTO_H */
-