~ubuntu-branches/ubuntu/intrepid/mit-scheme/intrepid-updates

« back to all changes in this revision

Viewing changes to src/microcode/os2utl/config.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Hanson
  • Date: 2005-01-18 00:33:57 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050118003357-pv3i8iqlm5m80tl5
Tags: 7.7.90-5
* Add "libx11-dev" to build-depends.  (closes: Bug#290845)
* Fix debian/control and debian/menu to eliminate some lintian errors
  and warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*-C-*-
2
2
 
3
 
$Id: config.h,v 1.3 2001/03/01 05:23:53 cph Exp $
4
 
 
5
 
Copyright (c) 2000-2001 Massachusetts Institute of Technology
6
 
 
7
 
This program is free software; you can redistribute it and/or modify
 
3
$Id: config.h,v 1.7 2003/07/22 02:19:51 cph Exp $
 
4
 
 
5
Copyright 2000,2001,2002,2003 Massachusetts Institute of Technology
 
6
 
 
7
This file is part of MIT/GNU Scheme.
 
8
 
 
9
MIT/GNU Scheme is free software; you can redistribute it and/or modify
8
10
it under the terms of the GNU General Public License as published by
9
11
the Free Software Foundation; either version 2 of the License, or (at
10
12
your option) any later version.
11
13
 
12
 
This program is distributed in the hope that it will be useful, but
 
14
MIT/GNU Scheme is distributed in the hope that it will be useful, but
13
15
WITHOUT ANY WARRANTY; without even the implied warranty of
14
16
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
17
General Public License for more details.
16
18
 
17
19
You should have received a copy of the GNU General Public License
18
 
along with this program; if not, write to the Free Software
19
 
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
20
along with MIT/GNU Scheme; if not, write to the Free Software
 
21
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
 
22
USA.
 
23
 
20
24
*/
21
25
 
22
26
#ifndef SCM_CONFIG_H
30
34
#include <time.h>
31
35
 
32
36
#ifndef __GNUC__
33
 
typedef unsigned short mode_t;
34
 
typedef short nlink_t;
35
 
typedef long pid_t;
36
 
typedef short uid_t;
37
 
typedef short gid_t;
 
37
  typedef unsigned short mode_t;
 
38
  typedef short nlink_t;
 
39
  typedef long pid_t;
 
40
  typedef short uid_t;
 
41
  typedef short gid_t;
38
42
#endif
39
43
 
40
44
typedef unsigned char cc_t;
41
 
typedef long ssize_t;
 
45
#if (! ((defined (__IBMC__)) && (__IBMC__ >= 360)))
 
46
  typedef long ssize_t;
 
47
#endif
42
48
 
43
49
/* The number of bytes in a unsigned long.  */
44
50
#define SIZEOF_UNSIGNED_LONG 4
74
80
/* Define if you have the <md5.h> header file.  */
75
81
#define HAVE_MD5_H 1
76
82
 
 
83
/* Define to the address where bug reports for this package should be sent. */
 
84
#define PACKAGE_BUGREPORT "bug-mit-scheme@gnu.org"
 
85
 
 
86
/* Define to the full name of this package. */
 
87
#define PACKAGE_NAME "MIT/GNU Scheme"
 
88
 
 
89
/* Define to the full name and version of this package. */
 
90
#define PACKAGE_STRING "MIT/GNU Scheme 14.11"
 
91
 
 
92
/* Define to the one symbol short name of this package. */
 
93
#define PACKAGE_TARNAME "mit-scheme"
 
94
 
 
95
/* Define to the version of this package. */
 
96
#define PACKAGE_VERSION "14.11"
 
97
 
77
98
/* Include the shared configuration header.  */
78
99
#include "confshared.h"
79
100