From 33b6c26253062c395320fe6b3fee5fbfaa118ef6 Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Thu, 12 Dec 1991 01:21:40 +0000 Subject: Added macros for the 'type' part of an fopen, freopen or fdopen. [Update]| eg: fopen("foo", FOPEN_WB) to open for writing binary. Usefull for vms, dos and who knows what else. --- bfd/hosts/delta88.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'bfd/hosts/delta88.h') diff --git a/bfd/hosts/delta88.h b/bfd/hosts/delta88.h index 879b035..6e92549 100644 --- a/bfd/hosts/delta88.h +++ b/bfd/hosts/delta88.h @@ -79,3 +79,18 @@ 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. + [Update] + */ +#define FOPEN_RB "r" +#define FOPEN_WB "w" +#define FOPEN_AB "a" +#define FOPEN_RUB "r+" +#define FOPEN_WUB "w+" +#define FOPEN_AUB "a+" +#define FOPEN_RT "r" +#define FOPEN_WT "w" +#define FOPEN_AT "a" +#define FOPEN_RUT "r+" +#define FOPEN_WUT "w+" +#define FOPEN_AUT "a+" -- cgit v1.1