X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/blobdiff_plain/fb2f857a3d824a34b38b8e15619f1844dad6e1bd..1d7147ff6ecef92cf10791c7286f278689dec7a0:/csrc/pf_io.h diff --git a/csrc/pf_io.h b/csrc/pf_io.h index e03b034..c105e7a 100644 --- a/csrc/pf_io.h +++ b/csrc/pf_io.h @@ -132,9 +132,9 @@ void ioTerm( void ); #define PF_STDIN ((FileStream *) stdin) #define PF_STDOUT ((FileStream *) stdout) - #define PF_SEEK_SET (0) - #define PF_SEEK_CUR (1) - #define PF_SEEK_END (2) + #define PF_SEEK_SET (SEEK_SET) + #define PF_SEEK_CUR (SEEK_CUR) + #define PF_SEEK_END (SEEK_END) /* ** printf() is only used for debugging purposes.