diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-06 21:29:24 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-06 21:29:24 +0000 |
commit | ee76630538be506861c581ad2645018d52de6a58 (patch) | |
tree | 4afb03f49a51dc8b49f45cce6180b58496477e0c /vos/config.ga.h | |
parent | 645e49edd155d974f77fa182639cf116f11265e7 (diff) | |
download | perl-ee76630538be506861c581ad2645018d52de6a58.tar.gz |
VOS updates from Paul Green.
p4raw-id: //depot/perl@7579
Diffstat (limited to 'vos/config.ga.h')
-rw-r--r-- | vos/config.ga.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vos/config.ga.h b/vos/config.ga.h index d09b89b5fd..26cb1769f9 100644 --- a/vos/config.ga.h +++ b/vos/config.ga.h @@ -2031,12 +2031,23 @@ * This symbol is defined if the FILE_cnt macro can be used as an * lvalue. */ +/* STDIO_PTR_LVAL_SETS_CNT: + * This symbol is defined if using the FILE_ptr macro as an lvalue + * to increase the pointer by n has the side effect of decreasing the + * value of File_cnt(fp) by n. + */ +/* STDIO_PTR_LVAL_NOCHANGE_CNT: + * This symbol is defined if using the FILE_ptr macro as an lvalue + * to increase the pointer by n leaves File_cnt(fp) unchanged. + */ #define USE_STDIO_PTR /**/ #ifdef USE_STDIO_PTR #define FILE_ptr(fp) ((fp)->_ptr) #define STDIO_PTR_LVALUE /**/ #define FILE_cnt(fp) ((fp)->_cnt) #define STDIO_CNT_LVALUE /**/ +/*#define STDIO_PTR_LVAL_SETS_CNT /**/ +/*#define STDIO_PTR_LVAL_NOCHANGE_CNT /**/ #endif /* USE_STDIO_BASE: |