diff options
Diffstat (limited to 'libf2c/libF77/F77_aloc.c')
-rw-r--r-- | libf2c/libF77/F77_aloc.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libf2c/libF77/F77_aloc.c b/libf2c/libF77/F77_aloc.c index e329a1bfb34..f34bfa07975 100644 --- a/libf2c/libF77/F77_aloc.c +++ b/libf2c/libF77/F77_aloc.c @@ -6,13 +6,6 @@ static integer memfailure = 3; -#ifdef KR_headers -extern char *malloc(); -extern void G77_exit_0 (); - - char * -F77_aloc(Len, whence) integer Len; char *whence; -#else #include <stdlib.h> #ifdef __cplusplus extern "C" { @@ -24,7 +17,6 @@ extern void G77_exit_0 (integer*); char * F77_aloc(integer Len, char *whence) -#endif { char *rv; unsigned int uLen = (unsigned int) Len; /* for K&R C */ |