NCEPLIBS-w3emc 2.12.0
Loading...
Searching...
No Matches
errmsg.f
Go to the documentation of this file.
1C> @file
2C> @brief Write a message to stderr.
3C> @author Mark Iredell @date 1995-10-31
4
5C> Write a message to stderr.
6C>
7C> Program history log:
8C> - 1995-10-31 Mark Iredell
9C>
10C> @param[in] CMSG character*(*) message to write.
11C>
12C> @note This is a machine-dependent subprogram for Cray.
13C>
14C> @author Mark Iredell @date 1995-10-31
15C-----------------------------------------------------------------------
16 SUBROUTINE errmsg(CMSG)
17 CHARACTER*(*) CMSG
18C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
19 WRITE(0,'(A)') cmsg
20C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
21 RETURN
22 END
subroutine errmsg(cmsg)
Write a message to stderr.
Definition errmsg.f:17