1 /* -*-C-*-
2 
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
4     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
5     2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Massachusetts
6     Institute of Technology
7 
8 This file is part of MIT/GNU Scheme.
9 
10 MIT/GNU Scheme is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or (at
13 your option) any later version.
14 
15 MIT/GNU Scheme is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 General Public License for more details.
19 
20 You should have received a copy of the GNU General Public License
21 along with MIT/GNU Scheme; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
23 USA.
24 
25 */
26 
27 #ifndef SCM_CONFIG_H
28 #define SCM_CONFIG_H
29 
30 #ifndef __OS2__
31 #  define __OS2__
32 #endif
33 
34 #include <sys/types.h>
35 #include <time.h>
36 
37 #ifndef __GNUC__
38   typedef unsigned short mode_t;
39   typedef short nlink_t;
40   typedef long pid_t;
41   typedef short uid_t;
42   typedef short gid_t;
43 #endif
44 
45 typedef unsigned char cc_t;
46 #if (! ((defined (__IBMC__)) && (__IBMC__ >= 360)))
47   typedef long ssize_t;
48 #endif
49 
50 /* The number of bytes in a unsigned long.  */
51 #define SIZEOF_UNSIGNED_LONG 4
52 
53 /* Define if your processor stores words with the most significant
54    byte first (like Motorola and SPARC, unlike Intel and VAX).  */
55 /* #undef WORDS_BIGENDIAN */
56 
57 /* Define if you have the floor function.  */
58 #define HAVE_FLOOR 1
59 
60 /* Define if you have the fmod function.  */
61 #define HAVE_FMOD 1
62 
63 /* Define if you have the frexp function.  */
64 #define HAVE_FREXP 1
65 
66 /* Define if you have the modf function.  */
67 #define HAVE_MODF 1
68 
69 /* Define if you have the ANSI C header files.  */
70 #define STDC_HEADERS 1
71 
72 /* Define if you have the <unistd.h> header file.  */
73 /* #undef HAVE_UNISTD_H */
74 
75 /* Define if you have the <fcntl.h> header file.  */
76 #define HAVE_FCNTL_H 1
77 
78 /* Define if you have the <blowfish.h> header file.  */
79 #define HAVE_BLOWFISH_H 1
80 
81 /* Define if you have the <md5.h> header file.  */
82 #define HAVE_MD5_H 1
83 
84 /* Define to the address where bug reports for this package should be sent. */
85 #define PACKAGE_BUGREPORT "bug-mit-scheme@gnu.org"
86 
87 /* Define to the full name of this package. */
88 #define PACKAGE_NAME "MIT/GNU Scheme microcode"
89 
90 /* Define to the version of this package. */
91 #define PACKAGE_VERSION "15.1"
92 
93 /* Define to the full name and version of this package. */
94 #define PACKAGE_STRING PACKAGE_NAME PACKAGE_VERSION
95 
96 /* Define to the one symbol short name of this package. */
97 #define PACKAGE_TARNAME "mit-scheme"
98 
99 /* Include the shared configuration header.  */
100 #include "confshared.h"
101 
102 #endif /* SCM_CONFIG_H */
103