summaryrefslogtreecommitdiff
path: root/contrib/libf2c/f2cext.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/libf2c/f2cext.c')
-rw-r--r--contrib/libf2c/f2cext.c40
1 files changed, 7 insertions, 33 deletions
diff --git a/contrib/libf2c/f2cext.c b/contrib/libf2c/f2cext.c
index 56f9490c6f519..2b51d88e75ccb 100644
--- a/contrib/libf2c/f2cext.c
+++ b/contrib/libf2c/f2cext.c
@@ -16,7 +16,7 @@ License along with GNU Fortran; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#include <math.h> /* for j0 et al */
+
#include <f2c.h>
typedef void *sig_proc; /* For now, this will have to do. */
@@ -203,23 +203,10 @@ void ctime_ (char *chtime, const ftnlen Lchtime, longint *xstime) {
}
#endif
-#ifdef Ldate_y2kbuggy
+#ifdef Ldate
int date_ (char *buf, ftnlen buf_len) {
- /* Fail to link, so user sees attempt to invoke non-Y2K-compliant
- routine. */
- extern int G77_date_y2kbuggy_0 (char *buf, ftnlen buf_len);
- return G77_date_y2kbuggy_0 (buf, buf_len);
-}
-#endif
-
-#ifdef Ldate_y2kbug
-int date_y2kbug__ (char *buf, ftnlen buf_len) {
- /* If user wants to invoke the non-Y2K-compliant routine via
- an `EXTERNAL' interface, avoiding the warning via g77's
- `INTRINSIC' interface, force coding of "y2kbug" string in
- user's program. */
- extern int G77_date_y2kbug_0 (char *buf, ftnlen buf_len);
- return G77_date_y2kbug_0 (buf, buf_len);
+ extern int G77_date_0 (char *buf, ftnlen buf_len);
+ return G77_date_0 (buf, buf_len);
}
#endif
@@ -553,23 +540,10 @@ integer unlink_ (const char *str, const ftnlen Lstr) {
}
#endif
-#ifdef Lvxtidt_y2kbuggy
+#ifdef Lvxtidt
int vxtidate_ (integer *m, integer *d, integer *y) {
- /* Fail to link, so user sees attempt to invoke non-Y2K-compliant
- routine. */
- extern int G77_vxtidate_y2kbuggy_0 (integer *m, integer *d, integer *y);
- return G77_vxtidate_y2kbuggy_0 (m, d, y);
-}
-#endif
-
-#ifdef Lvxtidt_y2kbug
-int vxtidate_y2kbug__ (integer *m, integer *d, integer *y) {
- /* If user wants to invoke the non-Y2K-compliant routine via
- an `EXTERNAL' interface, avoiding the warning via g77's
- `INTRINSIC' interface, force coding of "y2kbug" string in
- user's program. */
- extern int G77_vxtidate_y2kbug_0 (integer *m, integer *d, integer *y);
- return G77_vxtidate_y2kbug_0 (m, d, y);
+ extern int G77_vxtidate_0 (integer *m, integer *d, integer *y);
+ return G77_vxtidate_0 (m, d, y);
}
#endif