/* * CedarPreBasicsOther.c * bj, February 13, 1989 2:43:34 pm PST * Willie-Sue, August 9, 1991 1:30:23 pm PDT */ extern void XR_install_XREnvironImpl(); extern void XR_install_BulletproofVestImpl(); extern void XR_run_XREnvironImpl(); extern void XR_run_BulletproofVestImpl(); void XR_install_CedarPreBasicsOther() { /* PRE-start trap */ XR_install_XREnvironImpl(); XR_install_BulletproofVestImpl(); }; void XR_run_CedarPreBasicsOther() { /* start trap */ XR_install_CedarPreBasicsOther(); XR_run_XREnvironImpl(); XR_run_BulletproofVestImpl(); }; /* hackery for PCR-UnixLoad command */ void XR_install_cedarprebasicsother() { XR_install_CedarPreBasicsOther(); }; void XR_run_cedarprebasicsother() { XR_run_CedarPreBasicsOther(); };