~ubuntu-branches/ubuntu/vivid/gcl/vivid

« back to all changes in this revision

Viewing changes to h/include.h

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2002-03-04 14:29:59 UTC
  • Revision ID: james.westby@ubuntu.com-20020304142959-dey14w08kr7lldu3
Tags: upstream-2.5.0.cvs20020219
ImportĀ upstreamĀ versionĀ 2.5.0.cvs20020219

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 Copyright (C) 1994 M. Hagiya, W. Schelter, T. Yuasa
 
3
 
 
4
This file is part of GNU Common Lisp, herein referred to as GCL
 
5
 
 
6
GCL is free software; you can redistribute it and/or modify it under
 
7
the terms of the GNU LIBRARY GENERAL PUBLIC LICENSE as published by
 
8
the Free Software Foundation; either version 2, or (at your option)
 
9
any later version.
 
10
 
 
11
GCL 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 Library General Public 
 
14
License for more details.
 
15
 
 
16
You should have received a copy of the GNU Library General Public License 
 
17
along with GCL; see the file COPYING.  If not, write to the Free Software
 
18
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
19
 
 
20
*/
 
21
 
 
22
/*
 
23
        include.h
 
24
*/
 
25
 
 
26
 
 
27
/* whether to use prototypes or not */
 
28
#ifdef __STDC__
 
29
#define P__(x) x
 
30
#else
 
31
#define P__(x)
 
32
#endif
 
33
 
 
34
 
 
35
#include "options.h"
 
36
#include "gclincl.h"
 
37
#include "config.h"
 
38
 
 
39
#ifdef __GNUC__
 
40
#ifndef alloca
 
41
#define alloca __builtin_alloca
 
42
#endif
 
43
#endif
 
44
 
 
45
#ifdef UNIX
 
46
#include <ctype.h>
 
47
#define isalphanum(x)   isalnum(x)
 
48
#endif
 
49
 
 
50
#ifdef IN_MAIN
 
51
#define EXTER
 
52
#else
 
53
#define EXTER extern 
 
54
#endif
 
55
 
 
56
#if defined(GMP) || defined(NEED_MP_H)
 
57
#include "../h/mp.h"
 
58
#endif
 
59
 
 
60
#include "../h/compbas.h"
 
61
#include "../h/enum.h"
 
62
#include "../h/object.h"
 
63
#include "../h/vs.h"
 
64
#include "../h/bds.h"
 
65
#include "../h/frame.h"
 
66
#include "../h/stacks.h"
 
67
#include "../h/lex.h"
 
68
#include "../h/eval.h"
 
69
 
 
70
#include "../h/notcomp.h"
 
71
#include "../h/funlink.h"
 
72
#include "../h/att_ext.h"
 
73
#include "../h/new_decl.h"
 
74
#include "compbas2.h"
 
75
#include "compat.h"
 
76
 
 
77
#include "../h/rgbc.h"