home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / lib270b.zip / emx / include / cpp / hlist.h < prev    next >
C/C++ Source or Header  |  1994-11-30  |  911b  |  40 lines

  1. /*
  2.  *
  3.  * Copyright (c) 1994
  4.  * Hewlett-Packard Company
  5.  *
  6.  * Permission to use, copy, modify, distribute and sell this software
  7.  * and its documentation for any purpose is hereby granted without fee,
  8.  * provided that the above copyright notice appear in all copies and
  9.  * that both that copyright notice and this permission notice appear
  10.  * in supporting documentation.  Hewlett-Packard Company makes no
  11.  * representations about the suitability of this software for any
  12.  * purpose.  It is provided "as is" without express or implied warranty.
  13.  *
  14.  */
  15.  
  16. #ifndef HLIST_H
  17. #define HLIST_H
  18.  
  19. #ifdef LIST_H
  20. #undef LIST_H
  21. #define __LIST_WAS_DEFINED
  22. #endif
  23.  
  24. #define Allocator huge_allocator
  25. #define list huge_list
  26. #include <hugalloc.h>
  27. #include <list.h>
  28.  
  29. #undef LIST_H
  30.  
  31. #ifdef __LIST_WAS_DEFINED
  32. #define LIST_H
  33. #undef  __LIST_WAS_DEFINED
  34. #endif
  35.  
  36. #undef Allocator
  37. #undef list
  38.  
  39. #endif
  40.