#ifndef __STDDEF_LOADED #define __STDDEF_LOADED /**************************************************************************** ** ** - Common Definitions ** ***************************************************************************** ** Header introduced by the ANSI C Standard ***************************************************************************** ** ** Copyright 2000 Compaq Computer Corporation ** ** Compaq and the Compaq logo Registered in U.S. Patent and Trademark Office. ** ** Confidential computer software. Valid license from Compaq 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. ** ****************************************************************************** */ #pragma __nostandard #include typedef int ptrdiff_t; #ifndef __SIZE_T # define __SIZE_T 1 typedef __size_t size_t; #endif #ifndef __WCHAR_T # define __WCHAR_T typedef __wchar_t wchar_t; #endif #ifndef NULL # define NULL __NULL #endif #define offsetof(type, identifier) ((__size_t)(&((type*) NULL)->identifier)) #pragma __standard #endif /* __STDDEF_LOADED */