diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2004-06-12 21:50:35 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2004-06-12 21:50:35 +0000 |
commit | 8507aff81cc90b957dc9c334b9778d457ef497c8 (patch) | |
tree | 62adb5d8f0b7f517f81e7aae29f196c83e41f28b /devel/fortran-utils | |
parent | cf65af831e3c751e5c9fdbf616b0d9e19d33a812 (diff) |
Notes
Diffstat (limited to 'devel/fortran-utils')
-rw-r--r-- | devel/fortran-utils/files/patch-fpr.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/devel/fortran-utils/files/patch-fpr.c b/devel/fortran-utils/files/patch-fpr.c new file mode 100644 index 000000000000..57c142e7ac18 --- /dev/null +++ b/devel/fortran-utils/files/patch-fpr.c @@ -0,0 +1,38 @@ +--- fpr/fpr.c.orig Fri May 27 14:31:21 1994 ++++ fpr/fpr.c Sat Jun 12 23:49:50 2004 +@@ -45,6 +45,7 @@ + #endif /* not lint */ + + #include <stdio.h> ++#include <stdlib.h> + + #define BLANK ' ' + #define TAB '\t' +@@ -80,9 +81,6 @@ + int maxpos; + int maxcol; + +-extern char *malloc(); +-extern char *calloc(); +-extern char *realloc(); + + + +@@ -124,7 +122,7 @@ + + while ( ! ateof) + { +- gettext(); ++ mygettext(); + ch = getchar(); + if (ch == EOF) + { +@@ -210,7 +208,7 @@ + + + +-gettext() ++mygettext() + { + register int i; + register char ateol; |