mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
27 lines
538 B
C
27 lines
538 B
C
/* IDENTIFICATION: Robert W. Bailey LinCom Corporation
|
|
Created: January 1989 */
|
|
|
|
/* PURPOSE: Localize all unix system user commands used in 'C' routines */
|
|
|
|
/*
|
|
* $Id: unix_commands.h 646 2010-04-28 21:50:31Z lin $
|
|
*/
|
|
|
|
|
|
#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
|
|
|