/* * MSPORT.H Portable type definitions * * Copyright (c) 1991 Shal Farley * Cheshire Engineering Corporation * 650 Sierra Madre Villa Avenue, Suite 201 * Pasadena, California 91107 * (818) 351-5493 * (818) 351-8645 FAX * shal@alumni.caltech.edu * * This software may be used and distributed for any purpose without license or * royalty payments so long as the above copyright notice is preserved. If you * have any comments, bug fixes, improvements, or new programs based upon this * software I'd like to hear from you. */ #ifdef __STDC__ # define UCHAR unsigned char # define USHORT unsigned short int #endif /* __STDC__*/ #ifdef decus # define UCHAR char # define USHORT unsigned # define const # define void char #endif /* decus */ #ifdef ghs # define UCHAR unsigned char # define USHORT unsigned short int # define const #endif