comparison liboctave/sparse-util.h @ 5506:b4cfbb0ec8c4

[project @ 2005-10-23 19:09:32 by dbateman]
author dbateman
date Sun, 23 Oct 2005 19:09:33 +0000
parents
children 069ea93b3c45
comparison
equal deleted inserted replaced
5505:17682e3fba2a 5506:b4cfbb0ec8c4
1 /*
2
3 Copyright (C) 2005 David Bateman
4 Copyright (C) 1998-2005 Andy Adler
5
6 Octave is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
10
11 Octave is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA.
20
21 */
22
23 #if !defined (octave_sparse_util_h)
24 #define octave_sparse_util_h 1
25
26 extern void SparseCholError (int status, char *file, int line, char *message);
27 extern int SparseCholPrint (const char *fmt, ...);
28
29 #endif
30
31 /*
32 ;;; Local Variables: ***
33 ;;; mode: C++ ***
34 ;;; End: ***
35 */