1 /* 2 * Copyright (c) 1989 The Regents of the University of California. 3 * All rights reserved. 4 * 5 * %sccs.include.redist.c% 6 * 7 * @(#)pathnames.h 5.5 (Berkeley) 06/28/90 8 */ 9 10 #if BSD > 43 11 12 # include <paths.h> 13 14 # define _PATH_LOGIN "/usr/bin/login" 15 16 #else 17 18 # define _PATH_TTY "/dev/tty" 19 # define _PATH_LOGIN "/bin/login" 20 21 #endif 22 23 #ifdef BFTPDAEMON 24 #define BFTPPATH "/usr/ucb/bftp" 25 #endif /* BFTPDAEMON */ 26