X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/blobdiff_plain/970d32b553a44051cedd2caf34267b7b1cdbab78..1cb310e62eaf4422ee298d9d87c35f9dd6b4c71c:/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;