Rev 16182 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
C Mostly for S compatibility.C These now all call C functions via F77_NAME(.) in ./print.c :subroutine intpr(label, nchar, data, ndata)integer nchar, ndatacharacter*(*) labelinteger data(ndata)integer ncnc = ncharif(nc .lt. 0) nc = len(label)call intpr0(label, nc, data, ndata)endsubroutine realpr(label, nchar, data, ndata)integer nchar, ndatacharacter*(*) labelreal data(ndata)integer ncnc = ncharif(nc .lt. 0) nc = len(label)call realp0(label, nc, data, ndata)endsubroutine dblepr(label, nchar, data, ndata)integer nchar, ndatacharacter*(*) labeldouble precision data(ndata)integer ncnc = ncharif(nc .lt. 0) nc = len(label)call dblep0(label, nc, data, ndata)endC R-only Fortran versions of error and warningsubroutine rexit(msg)character*(*) msgcall rexitc(msg, len(msg))endsubroutine rwarn(msg)character*(*) msgcall rwarnc(msg, len(msg))end