home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume27 / clc / part01 / libs / src / fsma / impl.h
Encoding:
C/C++ Source or Header  |  1993-11-28  |  572 b   |  29 lines

  1. /*
  2.  * (c) Copyright 1992 by Panagiotis Tsirigotis
  3.  * All rights reserved.  The file named COPYRIGHT specifies the terms 
  4.  * and conditions for redistribution.
  5.  */
  6.  
  7. /*
  8.  * $Id: impl.h,v 5.1 1992/10/10 07:23:18 panos Exp $
  9.  */
  10.  
  11. #ifndef NULL
  12. #define NULL 0
  13. #endif
  14.  
  15. #ifndef FALSE
  16. #define FALSE     0
  17. #define TRUE      1
  18. #endif
  19.  
  20. #define PRIVATE                     static
  21.  
  22. #define SLOTS_PER_CHUNK             100
  23.  
  24. #define POINTER                            __fsma_pointer
  25. #define MINSIZE                     sizeof( POINTER )
  26.  
  27. #define CHUNK_HEADER( p )           ((union __fsma_chunk_header *)(p))
  28.  
  29.