trick/include/trick/unix_commands.h
Michael Vetter 18f0d7e871 Remove trailing whitespaces
Makes it easier to edit the files. So if we press 'end of line' we are
really at the end of line.
2016-11-08 10:25:07 +01:00

22 lines
473 B
C

/* IDENTIFICATION: Robert W. Bailey LinCom Corporation
Created: January 1989 */
/* PURPOSE: Localize all unix system user commands used in 'C' routines */
#ifndef _UNIX_COMMANDS
#define _UNIX_COMMANDS
#if __sgi
#define unix_ssh "/usr/freeware/bin/ssh"
#define unix_rsh "/usr/bsd/rsh"
#elif __sun
#define unix_ssh "/usr/local/bin/ssh"
#define unix_rsh "/usr/bin/rsh"
#else
#define unix_ssh "/usr/bin/ssh"
#define unix_rsh "/usr/bin/rsh"
#endif
#endif