home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / lib / support / defs.h next >
C/C++ Source or Header  |  1996-09-28  |  524b  |  28 lines

  1. /*
  2.  * defs.h
  3.  *
  4.  * Copyright (c) 1996 Systems Architecture Research Centre,
  5.  *           City University, London, UK.
  6.  *
  7.  * See the file "license.terms" for information on usage and redistribution
  8.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9.  *
  10.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  11.  */
  12.  
  13. #ifndef __defs_h
  14. #define __defs_h
  15.  
  16. #define    MAXNUMLEN    64
  17. #define    MAXLIBPATH    1024
  18.  
  19. #if !defined(MAXNAMELEN)
  20. #define    MAXNAMELEN    1024
  21. #endif
  22.  
  23. #if !defined(MAXPATHLEN)
  24. #define    MAXPATHLEN    1024
  25. #endif
  26.  
  27. #endif
  28.