#ifndef _cdatrans_ #define _cdatrans_ /* ******************************************************************************** ** ** (c) Copyright 2004 Hewlett-Packard Development Company, L.P. ** ** Proprietary computer software. Valid license from HP required for ** possession, use or copying. Consistent with FAR 12.211 and 12.212, ** Commercial Computer Software, Computer Software Documentation, and ** Technical Data for Commercial Items are licensed to the U.S. Government ** under vendor's standard commercial license. ** ** ABSTRACT: ** This file contains the translation table to define ANSI C style ** predefined symbols back to their pre ANSI C counterparts if we are ** not compiling with a conformant compiler. ** ******************************************************************************** */ /* * Define __ predefined symbols in sources back to pre ansi style * if we are compiling with non ANSI C conformant compiler. */ #ifndef __STDC__ #ifdef unix #ifndef __unix__ #define __unix__ unix #endif #endif #ifdef vms #ifndef __vms__ #define __vms__ vms #endif #endif /* verified for ia64 port - Gerry Gladu */ #ifdef vax #ifndef __vax__ #define __vax__ vax #endif #endif #ifdef vaxc #ifndef __vaxc__ #define __vaxc__ vaxc #endif #endif #endif /* Handle case of __unix defined but not __unix__ (c89) */ #ifdef __unix #ifndef __unix__ #define __unix__ __unix #endif #endif #endif /* ifndef _cdatrans_ */