mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 06:27:49 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
22 lines
474 B
C
22 lines
474 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
|
|
|