X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/blobdiff_plain/bb6b2dcdd9acffabfd373c4c3f6b64a9cc43f335..77f603e7a5d5b01af482c34c2eae7e563bd17583:/csrc/pf_types.h diff --git a/csrc/pf_types.h b/csrc/pf_types.h index e35417a..52ad9f7 100644 --- a/csrc/pf_types.h +++ b/csrc/pf_types.h @@ -23,28 +23,11 @@ ** 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 cell_t *dicptr; typedef char ForthString; typedef char *ForthStringPtr;