home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / uccs / root.14 / udk / usr / include / nlist.h < prev    next >
C/C++ Source or Header  |  1998-08-19  |  1KB  |  36 lines

  1. /*
  2.  * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved. 
  3.  *                                                                         
  4.  *        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE               
  5.  *                   SANTA CRUZ OPERATION INC.                             
  6.  *                                                                         
  7.  *   The copyright notice above does not evidence any actual or intended   
  8.  *   publication of such source code.                                      
  9.  */
  10.  
  11. #ifndef _NLIST_H
  12. #define _NLIST_H
  13. #ident    "@(#)sgs-head:common/head/nlist.h    1.8.4.2"
  14.  
  15. struct nlist
  16. {
  17.         char            *n_name;        /* symbol name */
  18.         long            n_value;        /* value of symbol */
  19.         short           n_scnum;        /* section number */
  20.         unsigned short  n_type;         /* type and derived type */
  21.         char            n_sclass;       /* storage class */
  22.         char            n_numaux;       /* number of aux. entries */
  23. };
  24.  
  25. #if defined(__cplusplus)
  26. extern "C" {
  27. #endif
  28.  
  29. extern int nlist(const char *, struct nlist *);
  30.  
  31. #if defined(__cplusplus)
  32. }
  33. #endif
  34.  
  35. #endif /*_NLIST_H*/
  36.