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

  1. /*
  2.  * path.h
  3.  * Path support routines.
  4.  *
  5.  * Copyright (c) 1996 Systems Architecture Research Centre,
  6.  *           City University, London, UK.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, June 1996.
  12.  */
  13.  
  14. #ifndef __paths_h
  15. #define __paths_h
  16.  
  17. /* Maximum internal path length */
  18. #define    MAXPATHLEN    1024
  19.  
  20. #if defined(__WIN32__) || defined(__OS2__)
  21. #define    PATHSEP        ';'
  22. #define    DIRSEP        "\\"
  23. #elif defined(__amigaos__)
  24. #define PATHSEP        ';'
  25. #define DIRSEP        "/"
  26. #else
  27. #define    PATHSEP        ':'
  28. #define    DIRSEP        "/"
  29. #endif
  30.  
  31. #endif
  32.