summaryrefslogtreecommitdiff
path: root/libguile/backtrace.h
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>1996-10-14 03:26:57 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>1996-10-14 03:26:57 +0000
commit02aa5a4c2f864b65d1073a4836968bd0bbb966b0 (patch)
treee33fdad41e077075d8e69291e8be2ae8c42e1751 /libguile/backtrace.h
parent782d171cf0518cbb1d2611108121f4bd1584cccc (diff)
downloadguile-02aa5a4c2f864b65d1073a4836968bd0bbb966b0.tar.gz
* init.c: Added #include "backtrace.h" and #include "stacks.h".
(scm_boot_guile_1): Added calls to scm_init_backtrace and scm_init_stacks. * Makefile.in: Added entries for new files: backtrace.c, backtrace.h, stacks.c and stacks.h.
Diffstat (limited to 'libguile/backtrace.h')
-rw-r--r--libguile/backtrace.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/libguile/backtrace.h b/libguile/backtrace.h
new file mode 100644
index 000000000..3f77f1ea6
--- /dev/null
+++ b/libguile/backtrace.h
@@ -0,0 +1,57 @@
+/* classes: h_files */
+
+#ifndef BACKTRACEH
+#define BACKTRACEH
+/* Copyright (C) 1996 Mikael Djurfeldt
+ *
+ * This program 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.
+ *
+ * This program 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 this software; see the file COPYING. If not, write to
+ * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * As a special exception, the Free Software Foundation gives permission
+ * for additional uses of the text contained in its release of GUILE.
+ *
+ * The exception is that, if you link the GUILE library with other files
+ * to produce an executable, this does not by itself cause the
+ * resulting executable to be covered by the GNU General Public License.
+ * Your use of that executable is in no way restricted on account of
+ * linking the GUILE library code into it.
+ *
+ * This exception does not however invalidate any other reasons why
+ * the executable file might be covered by the GNU General Public License.
+ *
+ * This exception applies only to the code released by the
+ * Free Software Foundation under the name GUILE. If you copy
+ * code from other Free Software Foundation releases into a copy of
+ * GUILE, as the General Public License permits, the exception does
+ * not apply to the code that you add in this way. To avoid misleading
+ * anyone as to the status of such modified files, you must delete
+ * this exception notice from them.
+ *
+ * If you write modifications of your own for GUILE, it is your choice
+ * whether to permit this exception to apply to your modifications.
+ * If you do not wish that, delete this exception notice.
+ *
+ * The author can be reached at djurfeldt@nada.kth.se
+ * Mikael Djurfeldt, SANS/NADA KTH, 10044 STOCKHOLM, SWEDEN
+ */
+
+
+#include "libguile/__scm.h"
+
+SCM scm_display_error SCM_P ((SCM stack, SCM port, SCM subr, SCM message, SCM args, SCM rest));
+SCM scm_display_backtrace SCM_P ((SCM stack, SCM port, SCM first, SCM depth));
+
+void scm_init_backtrace SCM_P ((void));
+
+#endif /* BACKTRACEH */