From: MERC::"uunet!ASD-YF.WPAFB.AF.MIL!nieland_t" 12-JUN-1992 09:58:51.82 To: decus-porters@asd-yf.wpafb.af.mil, nieland_t@asd-yf.wpafb.af.mil CC: routley@subtle.enet.dec.com Subj: Take II: RE: FWD: Any idea on this C porting question? From: SUBTLE::ROUTLEY "Kevin Routley: 381-2095" 12-JUN-1992 09:42:42.30 To: DECWIN::FISHER,STAR::MORSE CC: ROUTLEY,DECWRL::"DECUS-Porters@asd-yf.wpafb.af.mil,NIELAND_T@asd-yf.wpafb.af.mil" Subj: RE: FWD: Any idea on this C porting question? The SHELL$ entry points were undocumented (except for a small passing ref. in Appendix B of the VAXCRTL documentation) and unsupported by the C RTL team. For Alpha/VMS we are providing supported, documented versions of those routines, but not with the SHELL$ name, but with a DECC$ name. We have not yet added the necessary information to the appropriate header file, where we will include #defines to map the SHELL$ names to the DECC$ names. In the meantime, you can add this define to the code as follows: #ifdef __ALPHA #define SHELL$IS_SHELL DECC$IS_SHELL #endif and it should work fine. Kevin Routley C RTL Project Leader