Mercurial > hg > octave-nkf
view libcruft/misc/f77-fcn.c @ 3887:7da18459c08b
[project @ 2002-04-04 00:44:21 by jwe]
author | jwe |
---|---|
date | Thu, 04 Apr 2002 00:46:37 +0000 |
parents | ec80db02d436 |
children | 9be12c29c7d5 |
line wrap: on
line source
/* Copyright (C) 1996, 1997 John W. Eaton This file is part of Octave. Octave is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. Octave is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Octave; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <stdlib.h> #include <string.h> #include "f77-fcn.h" #include "lo-error.h" void copy_f77_context (void *from, void *to, unsigned int size) { memcpy (to, from, size); } /* All the STOP statements in the Fortran routines have been replaced with a call to XSTOPX. XSTOPX jumps back to the entry point for the Fortran function that called us. Then the calling function should do whatever cleanup is necessary. */ volatile void F77_FUNC (xstopx, XSTOPX) (const char *s, long int slen) { /* Skip printing message if it is just a single blank character. */ if (s && slen > 0 && ! (slen == 1 && *s == ' ')) (*current_liboctave_error_handler) ("%.*s", s, slen); longjmp (f77_context, 1); } /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */