X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/blobdiff_plain/bb6b2dcdd9acffabfd373c4c3f6b64a9cc43f335..4f2379351847bdadd3fa6ff698dc381c6bee5bea:/csrc/pf_types.h diff --git a/csrc/pf_types.h b/csrc/pf_types.h index e35417a..95c8e3c 100644 --- a/csrc/pf_types.h +++ b/csrc/pf_types.h @@ -23,29 +23,10 @@ ** Type Declarations ***************************************************************/ -#ifndef uint32 - typedef unsigned long uint32; -#endif -#ifndef int16 - typedef signed short int16; -#endif -#ifndef uint16 - typedef unsigned short uint16; -#endif -#ifndef int8 - typedef signed char int8; -#endif -#ifndef uint8 - typedef unsigned char uint8; -#endif #ifndef Err typedef long Err; #endif -typedef int32 cell; -typedef uint32 ucell; -typedef cell *dicptr; - typedef char ForthString; typedef char *ForthStringPtr;