CNS errors before/after recompilation

Suggestion for a proper solution to this problem:

Replace the SETFPEPS subroutine as follows

C ==========================================================================
C
SUBROUTINE SETFPEPS
C
IMPLICIT NONE
C I/O
INCLUDE ‘numbers.inc’
INCLUDE ‘machvar.inc’
C
C Determine the machine epsilon i.e. the smallest FPEPS such that both
C 1+FPEPS and 1-FPEPS are different from 1.
C
C local
DOUBLE PRECISION ONEDP
DOUBLE COMPLEX DBCOMP
C
C external
C NONE
C
C begin
C
C ONEDP doesn’t really need to be defined - EPSILON() only needs to know
C the type
ONEDP=(1.00)
FPEPS = EPSILON(ONEDP)
DBCOMP = DCMPLX(ZERO,ZERO)
CALL DECLAR(‘FP_EPSILON’, ‘DP’, ’ ', DBCOMP, FPEPS)
RETURN
END