1 /* $FreeBSD$ */ 2 3 /* Read standard system paths first. */ 4 #include <paths.h> 5 6 #ifndef _PATH_EXRC 7 #define _PATH_EXRC ".exrc" 8 #endif 9 10 #ifndef _PATH_MSGCAT 11 #define _PATH_MSGCAT "/usr/share/vi/catalog/" 12 #endif 13 14 #ifndef _PATH_NEXRC 15 #define _PATH_NEXRC ".nexrc" 16 #endif 17 18 /* On linux _PATH_PRESERVE is only writable by root */ 19 #define NVI_PATH_PRESERVE "/var/tmp/vi.recover/" 20 21 #ifndef _PATH_SYSEXRC 22 #define _PATH_SYSEXRC "/etc/vi.exrc" 23 #endif 24 25 #ifndef _PATH_TAGS 26 #define _PATH_TAGS "tags" 27 #endif 28