~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/h/include.h

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2006-05-17 02:46:26 UTC
  • Revision ID: james.westby@ubuntu.com-20060517024626-lljr08ftv9g9vefl
Tags: upstream-0.9h-20060510
ImportĀ upstreamĀ versionĀ 0.9h-20060510

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    include.h -- List of included files.
 
3
*/
 
4
/*
 
5
    Copyright (c) 1984, Taiichi Yuasa and Masami Hagiya.
 
6
    Copyright (c) 1990, Giuseppe Attardi.
 
7
 
 
8
    ECoLisp is free software; you can redistribute it and/or
 
9
    modify it under the terms of the GNU Library General Public
 
10
    License as published by the Free Software Foundation; either
 
11
    version 2 of the License, or (at your option) any later version.
 
12
 
 
13
    See file '../Copyright' for full details.
 
14
*/
 
15
 
 
16
 
 
17
#ifdef __GNUC__
 
18
#define VOID void
 
19
#else
 
20
#define VOID char
 
21
#endif
 
22
 
 
23
#include <stdio.h>
 
24
#include <stdarg.h>
 
25
#include <stdlib.h>
 
26
#include <setjmp.h>
 
27
#include <limits.h>
 
28
#include <ctype.h>
 
29
#include <signal.h>
 
30
#include <string.h>             /* for FreeBSD */
 
31
#include <sys/param.h>          /* includes <sys/signal.h> and <sys/types.h> */
 
32
#include <sys/types.h>          /* for EMX */
 
33
 
 
34
#include "machines.h"
 
35
 
 
36
#ifdef BSD
 
37
# include <sys/time.h>
 
38
#endif BSD
 
39
 
 
40
#ifdef SYSV
 
41
 
 
42
# ifndef MAXPATHLEN
 
43
#  define MAXPATHLEN    PATH_MAX
 
44
# endif MAXPATHLEN
 
45
 
 
46
#endif SYSV
 
47
 
 
48
#include "../gmp/gmp.h"
 
49
#include "object.h"
 
50
 
 
51
#include "vs.h"
 
52
#include "bds.h"
 
53
#include "frame.h"
 
54
 
 
55
#ifdef THREADS
 
56
# include "critical.h"
 
57
# include "lwp.h"
 
58
#endif THREADS
 
59
 
 
60
#include "external.h"
 
61
#include "lisp_external.h"
 
62
#include "lex.h"
 
63
#include "eval.h"
 
64
#include "cs.h"
 
65
#include "number.h"
 
66
 
 
67
/**********************************************************************/