c@427: /* xerbla.f -- translated by f2c (version 20061008). c@427: You must link the resulting object file with libf2c: c@427: on Microsoft Windows system, link with libf2c.lib; c@427: on Linux or Unix systems, link with .../path/to/libf2c.a -lm c@427: or, if you install libf2c.a in a standard place, with -lf2c -lm c@427: -- in that order, at the end of the command line, as in c@427: cc *.o -lf2c -lm c@427: Source for libf2c is in /netlib/f2c/libf2c.zip, e.g., c@427: c@427: http://www.netlib.org/f2c/libf2c.zip c@427: */ c@427: c@427: #include "f2c.h" c@427: #include "blaswrap.h" c@427: #include "stdio.h" c@427: c@427: /* Table of constant values */ c@427: c@427: static integer c__1 = 1; c@427: c@427: /* Subroutine */ int xerbla_(char *srname, integer *info) c@427: { c@427: c@427: c@427: /* -- LAPACK auxiliary routine (version 3.2) -- */ c@427: /* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */ c@427: /* November 2006 */ c@427: c@427: /* .. Scalar Arguments .. */ c@427: /* .. */ c@427: c@427: /* Purpose */ c@427: /* ======= */ c@427: c@427: /* XERBLA is an error handler for the LAPACK routines. */ c@427: /* It is called by an LAPACK routine if an input parameter has an */ c@427: /* invalid value. A message is printed and execution stops. */ c@427: c@427: /* Installers may consider modifying the STOP statement in order to */ c@427: /* call system-specific exception-handling facilities. */ c@427: c@427: /* Arguments */ c@427: /* ========= */ c@427: c@427: /* SRNAME (input) CHARACTER*(*) */ c@427: /* The name of the routine which called XERBLA. */ c@427: c@427: /* INFO (input) INTEGER */ c@427: /* The position of the invalid parameter in the parameter list */ c@427: /* of the calling routine. */ c@427: c@427: /* ===================================================================== */ c@427: c@427: /* .. Intrinsic Functions .. */ c@427: /* .. */ c@427: /* .. Executable Statements .. */ c@427: c@427: printf("** On entry to %6s, parameter number %2i had an illegal value\n", c@427: srname, *info); c@427: c@427: c@427: /* End of XERBLA */ c@427: c@427: return 0; c@427: } /* xerbla_ */