home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6574.LZX / include / sys / commargs.h next >
Encoding:
C/C++ Source or Header  |  1997-04-04  |  542 b   |  18 lines

  1. /* Copyright (c) 1993 SAS Institute, Inc., Cary, NC USA */
  2. /* All Rights Reserved */
  3.  
  4. /* This header file contains common preprocessor symbol   */
  5. /* definitions that were previously duplicated throughout */
  6. /* the header files. Those definitions were moved here    */
  7. /* and replaced with a #include of this header file.      */
  8. /* This was done to purify the header files for GST       */
  9. /* processing.                                            */
  10.  
  11. #ifndef __ARGS
  12. #ifdef NARGS
  13. #define __ARGS(a) ()
  14. #else
  15. #define __ARGS(a) a
  16. #endif
  17. #endif
  18.