pathnames.h 907 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * @(#)pathnames.h 5.3 (Berkeley) 5/9/89
  3. *
  4. * Heavily modified by poe@daimi.aau.dk for Linux
  5. */
  6. #include <paths.h>
  7. #ifndef __STDC__
  8. # error "we need an ANSI compiler"
  9. #endif
  10. #ifndef SBINDIR
  11. # define SBINDIR "/sbin"
  12. #endif
  13. #define _PATH_BSHELL "/bin/sh"
  14. #define _PATH_CSHELL "/bin/csh"
  15. #define _PATH_TTY "/dev/tty"
  16. #define TTYTYPES "/etc/ttytype"
  17. #define SECURETTY "/etc/securetty"
  18. #define _PATH_HUSHLOGIN ".hushlogin"
  19. #define _PATH_MOTDFILE "/etc/motd"
  20. #define _PATH_NOLOGIN "/etc/nologin"
  21. #define _PATH_LOGIN "/bin/login"
  22. #define _PATH_INITTAB "/etc/inittab"
  23. #define _PATH_RC "/etc/rc"
  24. #define _PATH_REBOOT "/bin/reboot"
  25. #define _PATH_SINGLE "/etc/singleboot"
  26. #define _PATH_SECURE "/etc/securesingle"
  27. #define _PATH_USERTTY "/etc/usertty"
  28. #define _PATH_CONFIGRC "/etc/config/start"
  29. #define _PATH_CONFIGTAB "/etc/config/inittab"
  30. #define _PATH_FIREWALL "/bin/firewall"