home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / paths.h < prev    next >
C/C++ Source or Header  |  2004-01-30  |  788b  |  31 lines

  1. /* paths.h
  2.  
  3.    Copyright 2001, 2002, 2003 Red Hat, Inc.
  4.  
  5. This file is part of Cygwin.
  6.  
  7. This software is a copyrighted work licensed under the terms of the
  8. Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
  9. details. */
  10.  
  11. #ifndef    _PATHS_H_
  12. #define _PATHS_H_
  13.  
  14. #define _PATH_BSHELL    "/bin/sh"
  15. #define _PATH_CSHELL    "/bin/csh"
  16. #define _PATH_DEFPATH    "/bin"
  17. #define _PATH_DEV    "/dev/"
  18. #define _PATH_DEVNULL    "/dev/null"
  19. #define _PATH_LASTLOG    "/var/log/lastlog"
  20. #define _PATH_MAN    "/usr/share/man"
  21. #define _PATH_MEM    "/dev/mem"
  22. #define _PATH_STDPATH    "/bin:/usr/sbin:/sbin"
  23. #define _PATH_TMP    "/tmp/"
  24. #define _PATH_TTY    "/dev/tty"
  25. #define _PATH_UTMP    "/var/run/utmp"
  26. #define _PATH_VARRUN    "/var/run/"
  27. #define _PATH_VI        "/bin/vi"
  28. #define _PATH_WTMP    "/var/log/wtmp"
  29.  
  30. #endif /* _PATHS_H_ */
  31.