home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / code / tkern10 / include / sys / tkproto.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-19  |  302 b   |  13 lines

  1. /* BC4 doesn't appear to have a manifest constant to tell us if
  2.  * we are in K&R mode (hence no prototypes). If you want to use K&R
  3.  * mode, define __NOANSI__ on the command line.
  4.  */
  5.  
  6. #ifndef __TKPROTO
  7. #ifndef __NOANSI__
  8. #define __TKPROTO(x)    x
  9. #else
  10. #define    __TKPROTO(x)    ()
  11. #endif
  12. #endif
  13.