home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 3 / 3296 / confnlname.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-05-07  |  241 b   |  14 lines

  1. #ifndef CONF_NLNAME_H
  2. #define CONF_NLNAME_H
  3.  
  4. #ifdef CONVEX
  5. #define NLNAME(foo) ((foo).n_un.n_name)
  6. /* why? why? why? why? haven't these people heard of portability? */
  7. #endif
  8.  
  9. #ifndef NLNAME
  10. #define NLNAME(foo) ((foo).n_name)
  11. #endif
  12.  
  13. #endif
  14.