home *** CD-ROM | disk | FTP | other *** search
- /*** PROTO.H ***/
-
- /* Written By P.A. McKenzie
- * The C Window Library
- * Copyright (C) 1990 All Rights Reserved
- */
- #ifndef PROTO_DEF
- #define PROTO_DEF
- #define __PROTO__ /* Delete this line for compilers that do not support
- * prototyping */
-
- #if defined (__PROTO__)
- # define P(s) s
- #else
- # define P(s) ()
- #endif
- #endif