diff options
Diffstat (limited to 'bfd/hosts/dose.h')
-rw-r--r-- | bfd/hosts/dose.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bfd/hosts/dose.h b/bfd/hosts/dose.h index a03b49a..ccab2ac 100644 --- a/bfd/hosts/dose.h +++ b/bfd/hosts/dose.h @@ -27,3 +27,18 @@ typedef short int16_type; typedef unsigned short uint16_type; typedef int int32_type; typedef unsigned int uint32_type; +/* Macros for the 'type' part of an fopen, freopen or fdopen. + <Read|Write>[Update]<Binary file><text file> + */ +#define FOPEN_RB "rb" +#define FOPEN_WB "wb" +#define FOPEN_AB "ab" +#define FOPEN_RUB "r+b" +#define FOPEN_WUB "w+b" +#define FOPEN_AUB "a+b" +#define FOPEN_RT "r" +#define FOPEN_WT "w" +#define FOPEN_AT "a" +#define FOPEN_RUT "r+" +#define FOPEN_WUT "w+" +#define FOPEN_AUT "a+" |