* eval.c, print.h, print.c, read.h, read.c: Modifications to
[bpt/guile.git] / libguile / libguile.h
CommitLineData
0f2d19dd
JB
1#ifndef LIBGUILEH
2#define LIBGUILEH
3
4/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this software; see the file COPYING. If not, write to
18 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 * As a special exception, the Free Software Foundation gives permission
21 * for additional uses of the text contained in its release of GUILE.
22 *
23 * The exception is that, if you link the GUILE library with other files
24 * to produce an executable, this does not by itself cause the
25 * resulting executable to be covered by the GNU General Public License.
26 * Your use of that executable is in no way restricted on account of
27 * linking the GUILE library code into it.
28 *
29 * This exception does not however invalidate any other reasons why
30 * the executable file might be covered by the GNU General Public License.
31 *
32 * This exception applies only to the code released by the
33 * Free Software Foundation under the name GUILE. If you copy
34 * code from other Free Software Foundation releases into a copy of
35 * GUILE, as the General Public License permits, the exception does
36 * not apply to the code that you add in this way. To avoid misleading
37 * anyone as to the status of such modified files, you must delete
38 * this exception notice from them.
39 *
40 * If you write modifications of your own for GUILE, it is your choice
41 * whether to permit this exception to apply to your modifications.
42 * If you do not wish that, delete this exception notice.
43 */
44\f
45
46\f
47
e94f0b3c
JB
48#include "__scm.h"
49
0f2d19dd
JB
50#ifdef STDC_HEADERS
51# include <stdlib.h>
52# ifdef AMIGA
53# include <stddef.h>
54# endif /* def AMIGA */
55# define scm_sizet size_t
56#else
57# ifdef _SIZE_T
58# define scm_sizet size_t
59# else
60# define scm_sizet unsigned int
61# endif /* def _SIZE_T */
62#endif /* def STDC_HEADERS */
63
0f2d19dd
JB
64#include "smob.h"
65
66
67
68#include "alist.h"
69#include "append.h"
70#include "arbiters.h"
71#include "async.h"
72#include "boolean.h"
73#include "chars.h"
74#include "continuations.h"
6040c774
MD
75#ifdef DEBUG_EXTENSIONS
76#include "debug.h"
77#endif
0f2d19dd
JB
78#include "dynwind.h"
79#include "eq.h"
80#include "error.h"
81#include "eval.h"
82#include "extchrs.h"
83#include "fdsocket.h"
84#include "feature.h"
85#include "files.h"
86#include "filesys.h"
87#include "fports.h"
88#include "gc.h"
89#include "genio.h"
90#include "gsubr.h"
91#include "hash.h"
92#include "hashtab.h"
93#include "init.h"
94#include "ioext.h"
95#include "kw.h"
96#include "libguile.h"
97#include "list.h"
98#include "load.h"
99#include "mallocs.h"
100#include "markers.h"
101#include "marksweep.h"
102#include "mbstrings.h"
103#include "numbers.h"
e94f0b3c 104#include "objprop.h"
6040c774 105#include "options.h"
0f2d19dd
JB
106#include "pairs.h"
107#include "params.h"
108#include "ports.h"
109#include "posix.h"
110#include "print.h"
111#include "procprop.h"
112#include "procs.h"
113#include "ramap.h"
114#include "read.h"
115#include "root.h"
116#include "scmsigs.h"
117#include "sequences.h"
118#include "simpos.h"
119#include "socket.h"
6040c774 120#include "srcprop.h"
0f2d19dd
JB
121#include "stackchk.h"
122#include "stime.h"
123#include "strings.h"
124#include "strop.h"
125#include "strorder.h"
126#include "strports.h"
127#include "struct.h"
128#include "symbols.h"
129#include "tag.h"
130#include "tags.h"
131#include "throw.h"
132#include "unif.h"
133#include "variable.h"
134#include "vectors.h"
135#include "vports.h"
136#include "weaks.h"
137
138
139\f
140
141#ifdef __STDC__
142
143#else /* STDC */
144
145#endif /* STDC */
146
147
148#endif /* LIBGUILEH */