aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libf2c/ChangeLog4
-rw-r--r--libf2c/libI77/lio.h5
2 files changed, 8 insertions, 1 deletions
diff --git a/libf2c/ChangeLog b/libf2c/ChangeLog
index b636620..aee3d69 100644
--- a/libf2c/ChangeLog
+++ b/libf2c/ChangeLog
@@ -1,3 +1,7 @@
+2002-04-11 Toon Moene <toon@moene.indiv.nluug.nl>
+
+ * libI77/lio.h: Treat INTEGER*1 as signed char.
+
2002-03-06 Phil Edwards <pme@gcc.gnu.org>
* libF77/Version.c: Fix misplaced leading blanks on first line.
diff --git a/libf2c/libI77/lio.h b/libf2c/libI77/lio.h
index 0123172..ec0c23d 100644
--- a/libf2c/libI77/lio.h
+++ b/libf2c/libI77/lio.h
@@ -43,7 +43,10 @@
typedef union
{
- char flchar;
+#ifndef KR_headers
+ signed
+#endif
+ char flchar;
short flshort;
ftnint flint;
#ifdef Allow_TYQUAD