summaryrefslogtreecommitdiff
path: root/config_H
diff options
context:
space:
mode:
Diffstat (limited to 'config_H')
-rw-r--r--config_H12
1 files changed, 11 insertions, 1 deletions
diff --git a/config_H b/config_H
index aaba37e9db..0ed7b110c3 100644
--- a/config_H
+++ b/config_H
@@ -14,7 +14,7 @@
* $Id: Config_h.U,v 3.0.1.3 1995/01/30 14:25:39 ram Exp $
*/
-/* Configuration time: Tue May 30 13:05:37 EDT 1995
+/* Configuration time: Fri Jun 2 14:50:10 EDT 1995
* Configured by: andy
* Target system: crystal crystal 3.2 2 i386
*/
@@ -758,14 +758,24 @@
* FILE structure pointed to by its argument. This macro will always be
* defined if USE_STDIO_PTR is defined.
*/
+/* STDIO_PTR_LVALUE:
+ * This symbol is defined if the FILE_ptr macro can be used as an
+ * lvalue.
+ */
/* FILE_cnt:
* This macro is used to access the _cnt field (or equivalent) of the
* FILE structure pointed to by its argument. This macro will always be
* defined if USE_STDIO_PTR is defined.
*/
+/* STDIO_CNT_LVALUE:
+ * This symbol is defined if the FILE_cnt macro can be used as an
+ * lvalue.
+ */
#ifdef USE_STDIO_PTR
#define FILE_ptr(fp) ((fp)->_ptr)
+#define STDIO_PTR_LVALUE
#define FILE_cnt(fp) ((fp)->_cnt)
+#define STDIO_CNT_LVALUE
#endif
/* FILE_base: