X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/blobdiff_plain/6b91cb54fc7dec367c57b4d9e97f2a086b809ea6..b3ad2602f4c6a2236081ed2d913d4e03892182a6:/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