home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJDEV201.ZIP / include / sys / cdefs.h < prev    next >
Encoding:
Text File  |  1994-09-18  |  319 b   |  16 lines

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #undef __P
  3. #if defined(__STDC__) || defined(__cplusplus)
  4. #define __P(x) x
  5. #else
  6. #define __P(x)
  7. #endif
  8.  
  9. #if defined(__cplusplus)
  10. #define __BEGIN_DECLS    extern "C" {
  11. #define __END_DECLS    }
  12. #else
  13. #define __BEGIN_DECLS
  14. #define __END_DECLS
  15. #endif
  16.