X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/blobdiff_plain/970d32b553a44051cedd2caf34267b7b1cdbab78..1cb310e62eaf4422ee298d9d87c35f9dd6b4c71c:/csrc/pf_io.c diff --git a/csrc/pf_io.c b/csrc/pf_io.c index 2cd3d3d..5638874 100644 --- a/csrc/pf_io.c +++ b/csrc/pf_io.c @@ -39,7 +39,7 @@ void ioTerm( void ) */ void ioEmit( char c ) { - int32 Result; + cell_t Result; Result = sdTerminalOut(c); if( Result < 0 ) EXIT(1); @@ -61,9 +61,9 @@ void ioEmit( char c ) /*************************************************************** ** Send an entire string.. */ -void ioType( const char *s, int32 n ) +void ioType( const char *s, cell_t n ) { - int32 i; + cell_t i; for( i=0; i