This file is indexed.

/usr/include/sigscheme/config.h is in libsscm-dev 0.8.5-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
/* src/config.h.  Generated from config.h.in by configure.  */
/* src/config.h.in.  Generated from configure.in by autoheader.  */

#ifndef __SIGSCHEME_CONFIG_H
#define __SIGSCHEME_CONFIG_H

/* Define if building universal (internal helper macro) */
/* #undef AC_APPLE_UNIVERSAL_BUILD */

/* The normal alignment of `char', in bytes. */
#define ALIGNOF_CHAR 1

/* The normal alignment of `double', in bytes. */
#define ALIGNOF_DOUBLE 8

/* The normal alignment of `float', in bytes. */
#define ALIGNOF_FLOAT 4

/* The normal alignment of `int', in bytes. */
#define ALIGNOF_INT 4

/* The normal alignment of `int16_t', in bytes. */
#define ALIGNOF_INT16_T 2

/* The normal alignment of `int32_t', in bytes. */
#define ALIGNOF_INT32_T 4

/* The normal alignment of `int64_t', in bytes. */
#define ALIGNOF_INT64_T 8

/* The normal alignment of `int8_t', in bytes. */
#define ALIGNOF_INT8_T 1

/* The normal alignment of `intmax_t', in bytes. */
#define ALIGNOF_INTMAX_T 8

/* The normal alignment of `intptr_t', in bytes. */
#define ALIGNOF_INTPTR_T 8

/* The normal alignment of `long', in bytes. */
#define ALIGNOF_LONG 8

/* The normal alignment of `long double', in bytes. */
#define ALIGNOF_LONG_DOUBLE 16

/* The normal alignment of `long long', in bytes. */
#define ALIGNOF_LONG_LONG 8

/* The normal alignment of `short', in bytes. */
#define ALIGNOF_SHORT 2

/* The normal alignment of `size_t', in bytes. */
#define ALIGNOF_SIZE_T 8

/* The normal alignment of `void *', in bytes. */
#define ALIGNOF_VOID_P 8

/* Define to 1 if the right shift operation is arithmetic. */
#define HAVE_ARITHMETIC_RSHIFT 1

/* Define to 1 if you have the <assert.h> header file. */
#define HAVE_ASSERT_H 1

/* Define to 1 if va_list is an array type. */
#define HAVE_AUTOREFERRED_PASSED_VA_LIST 1

/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1

/* Define to 1 if you have the `fileno' function. */
#define HAVE_FILENO 1

/* Define to 1 if you have the `getcontext' function. */
#define HAVE_GETCONTEXT 1

/* Define to 1 if you have the `getcwd' function. */
#define HAVE_GETCWD 1

/* Define to 1 if you have the `getpagesize' function. */
#define HAVE_GETPAGESIZE 1

/* Define to 1 if you have the GNU libc. */
#define HAVE_GLIBC 1

/* Define to 1 if the system has the type `intmax_t'. */
#define HAVE_INTMAX_T 1

/* Define to 1 if the system has the type `intptr_t'. */
#define HAVE_INTPTR_T 1

/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1

/* Define to 1 if you have the <limits.h> header file. */
#define HAVE_LIMITS_H 1

/* Define to 1 if the system has the type `long double'. */
#define HAVE_LONG_DOUBLE 1

/* Define to 1 if the type `long double' works and has more range or precision
   than `double'. */
#define HAVE_LONG_DOUBLE_WIDER 1

/* Define to 1 if the system has the type 'long long int'. */
#define HAVE_LONG_LONG_INT 1

/* Define to 1 if you have the <malloc.h> header file. */
#define HAVE_MALLOC_H 1

/* Define to 1 if you have the `memalign' function. */
#define HAVE_MEMALIGN 1

/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1

/* Define if `malloc'ing more than one page always returns a page-aligned
   address. */
/* #undef HAVE_PAGE_ALIGNED_MALLOC */

/* Define to 1 if you have the `posix_memalign' function. */
#define HAVE_POSIX_MEMALIGN 1

/* Define to 1 if f(va_list va){ &va; } works as expected. */
/* #undef HAVE_REFERENCEABLE_PASSED_VA_LIST */

/* Define to 1 if you have the `sigsetjmp' (and 'siglongjmp') function or
   macro. */
#define HAVE_SIGSETJMP 1

/* Define to 1 if you have the <stddef.h> header file. */
#define HAVE_STDDEF_H 1

/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1

/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1

/* Define to 1 if you have the `strcasecmp' function. */
#define HAVE_STRCASECMP 1

/* Define to 1 if you have the `strdup' function. */
#define HAVE_STRDUP 1

/* Define to 1 if cpp supports the ANSI # stringizing operator. */
#define HAVE_STRINGIZE 1

/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1

/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1

/* Define to 1 if you have the `strtoimax' function. */
#define HAVE_STRTOIMAX 1

/* Define to 1 if you have the `strtoll' function. */
#define HAVE_STRTOLL 1

/* Define to 1 if you have the <sys/inttypes.h> header file. */
/* #undef HAVE_SYS_INTTYPES_H */

/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1

/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1

/* Define to 1 if the system has the type `uintmax_t'. */
#define HAVE_UINTMAX_T 1

/* Define to 1 if the system has the type `uintptr_t'. */
#define HAVE_UINTPTR_T 1

/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1

/* Define to 1 if the system has the type 'unsigned long long int'. */
#define HAVE_UNSIGNED_LONG_LONG_INT 1

/* define if your compiler has __attribute__ */
#define HAVE___ATTRIBUTE__ 1

/* Define to the sub-directory where libtool stores uninstalled libraries. */
#define LT_OBJDIR ".libs/"

/* Name of package */
#define PACKAGE "sigscheme"

/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "sigscheme-ja@googlegroups.com"

/* Define to the full name of this package. */
#define PACKAGE_NAME "SigScheme"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "SigScheme 0.8.5"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "sigscheme"

/* Define to the home page for this package. */
#define PACKAGE_URL ""

/* Define to the version of this package. */
#define PACKAGE_VERSION "0.8.5"

/* type assertion on Scheme object accessors */
/* #undef SCM_ACCESSOR_ASSERT */

/* some SIOD compatible features */
/* #undef SCM_COMPAT_SIOD */

/* emulating the buggy behaviors of SIOD */
/* #undef SCM_COMPAT_SIOD_BUGS */

/* immutable list literals */
/* #undef SCM_CONST_LIST_LITERAL */

/* immutable vector literals */
#define SCM_CONST_VECTOR_LITERAL 1

/* debug mode */
/* #undef SCM_DEBUG */

/* frame-separator on backtrace */
/* #undef SCM_DEBUG_BACKTRACE_SEP */

/* values printing on backtrace */
/* #undef SCM_DEBUG_BACKTRACE_VAL */

/* encoding-related functions debugging */
/* #undef SCM_DEBUG_ENCODING */

/* macro and pattern matching debugging */
/* #undef SCM_DEBUG_MACRO */

/* parser debugging */
/* #undef SCM_DEBUG_PARSER */

/* port debugging */
/* #undef SCM_DEBUG_PORT */

/* Define to 1 to adapt encoding.c to SigScheme. */
#define SCM_ENCODING_USE_WITH_SIGSCHEME 1

/* Define to 1 to adapt scmport*.[hc] to SigScheme. */
#define SCM_SCMPORT_USE_WITH_SIGSCHEME 1

/* recovery from failed SCM_ASSERT() */
/* #undef SCM_SOFT_ASSERT */

/* strict check for form arguments */
#define SCM_STRICT_ARGCHECK 1

/* all feasible encoding error checks */
#define SCM_STRICT_ENCODING_CHECK 1

/* rejecting quote-less () */
/* #undef SCM_STRICT_NULL_FORM */

/* strict R5RS conformance checks */
/* #undef SCM_STRICT_R5RS */

/* strict check for R5RS top-level definitions */
#define SCM_STRICT_TOPLEVEL_DEFINITIONS 1

/* rejecting quote-less vector literal */
#define SCM_STRICT_VECTOR_FORM 1

/* 32bit_fixnum */
/* #undef SCM_USE_32BIT_FIXNUM */

/* 32bit_scmref */
/* #undef SCM_USE_32BIT_SCMREF */

/* 64bit_fixnum */
/* #undef SCM_USE_64BIT_FIXNUM */

/* 64bit_scmref */
/* #undef SCM_USE_64BIT_SCMREF */

/* showing backtrace on error */
/* #undef SCM_USE_BACKTRACE */

/* R5RS characters */
#define SCM_USE_CHAR 1

/* R5RS complex numbers (not implemented yet) */
/* #undef SCM_USE_COMPLEX */

/* R5RS continuation */
#define SCM_USE_CONTINUATION 1

/* all c[ad]+r procedures defined in R5RS */
#define SCM_USE_DEEP_CADRS 1

/* storage dump (not implemented yet) */
/* #undef SCM_USE_DUMP */

/* EUC-CN character encoding */
/* #undef SCM_USE_EUCCN */

/* euccn_as_default */
/* #undef SCM_USE_EUCCN_AS_DEFAULT */

/* EUC-JP character encoding */
/* #undef SCM_USE_EUCJP */

/* eucjp_as_default */
/* #undef SCM_USE_EUCJP_AS_DEFAULT */

/* EUC-KR character encoding */
/* #undef SCM_USE_EUCKR */

/* euckr_as_default */
/* #undef SCM_USE_EUCKR_AS_DEFAULT */

/* eval_c_string() of libsscm */
#define SCM_USE_EVAL_C_STRING 1

/* intermediate format strings */
#define SCM_USE_FORMAT 1

/* R5RS hygienic macros (experimental) */
/* #undef SCM_USE_HYGIENIC_MACRO */

/* R5RS integer numbers */
#define SCM_USE_INT 1

/* R5RS internal definitions */
#define SCM_USE_INTERNAL_DEFINITIONS 1

/* intptr_scmref */
#define SCM_USE_INTPTR_SCMREF 1

/* int_fixnum */
/* #undef SCM_USE_INT_FIXNUM */

/* 'define-macro' syntactic closure */
#define SCM_USE_LEGACY_MACRO 1

/* building libsscm */
#define SCM_USE_LIBSSCM 1

/* R5RS 'load' */
#define SCM_USE_LOAD 1

/* long_fixnum */
#define SCM_USE_LONG_FIXNUM 1

/* multibyte_char */
#define SCM_USE_MULTIBYTE_CHAR 1

/* null character in a middle of a string (experimental) */
/* #undef SCM_USE_NULL_CAPABLE_STRING */

/* R5RS numbers */
#define SCM_USE_NUMBER 1

/* number_io */
#define SCM_USE_NUMBER_IO 1

/* R5RS ports */
#define SCM_USE_PORT 1

/* R5RS promises */
#define SCM_USE_PROMISE 1

/* R5RS quasiquotation */
#define SCM_USE_QUASIQUOTE 1

/* R6RS characters (preliminary) */
#define SCM_USE_R6RS_CHARS 1

/* named characters of R6RS (preliminary) */
#define SCM_USE_R6RS_NAMED_CHARS 1

/* R5RS rational numbers (not implemented yet) */
/* #undef SCM_USE_RATIONAL */

/* internal format which takes raw C values from va_list */
#define SCM_USE_RAW_C_FORMAT 1

/* R5RS 'read' */
#define SCM_USE_READER 1

/* R5RS real numbers (not implemented yet) */
/* #undef SCM_USE_REAL */

/* the 'sscm' interactive shell */
#define SCM_USE_SHELL 1

/* singlebyte_as_default */
/* #undef SCM_USE_SINGLEBYTE_AS_DEFAULT */

/* Shift_JIS character encoding */
/* #undef SCM_USE_SJIS */

/* sjis_as_default */
/* #undef SCM_USE_SJIS_AS_DEFAULT */

/* SRFI-0 'cond-expand' */
#define SCM_USE_SRFI0 1

/* SRFI-1 list library */
#define SCM_USE_SRFI1 1

/* SRFI-2 'and-let*' */
#define SCM_USE_SRFI2 1

/* SRFI-22 running scheme scripts on Unix (partial) */
#define SCM_USE_SRFI22 1

/* SRFI-23 'error' */
#define SCM_USE_SRFI23 1

/* SRFI-28 'format' */
#define SCM_USE_SRFI28 1

/* SRFI-34 exception handling for programs */
#define SCM_USE_SRFI34 1

/* SRFI-38 'write/ss' ('read/ss' is not provided) */
#define SCM_USE_SRFI38 1

/* SRFI-43 vector library */
#define SCM_USE_SRFI43 1

/* SRFI-48 'format' (superset of SRFI-28) */
#define SCM_USE_SRFI48 1

/* SRFI-55 'require-extension' */
#define SCM_USE_SRFI55 1

/* SRFI-6 basic string ports */
#define SCM_USE_SRFI6 1

/* SRFI-60 integers as bits (partial) */
#define SCM_USE_SRFI60 1

/* SRFI-69 basic hash tables */
#define SCM_USE_SRFI69 1

/* SRFI-8 'receive' */
#define SCM_USE_SRFI8 1

/* SRFI-9 defining record types */
#define SCM_USE_SRFI9 1

/* SRFI-95 sorting and merging */
#define SCM_USE_SRFI95 1

/* SigScheme-specific extensions */
#define SCM_USE_SSCM_EXTENSIONS 1

/* SigScheme-specific 'format+' */
#define SCM_USE_SSCM_FORMAT_EXTENSION 1

/* storage_compact */
#define SCM_USE_STORAGE_COMPACT 1

/* storage_fatty */
/* #undef SCM_USE_STORAGE_FATTY */

/* primary procedures of R5RS strings */
#define SCM_USE_STRING 1

/* string_procedure */
#define SCM_USE_STRING_PROCEDURE 1

/* 'syntax-case' (not implemented yet) */
/* #undef SCM_USE_SYNTAX_CASE */

/* syntactic closure (not implemented yet) */
/* #undef SCM_USE_UNHYGIENIC_MACRO */

/* UTF-8 character encoding */
#define SCM_USE_UTF8 1

/* utf8_as_default */
#define SCM_USE_UTF8_AS_DEFAULT 1

/* valuecons for efficient multiple values handling */
/* #undef SCM_USE_VALUECONS */

/* R5RS vectors */
#define SCM_USE_VECTOR 1

/* suppressing compiler warnings */
#define SCM_USE_WARNING_SUPPRESSOR 1

/* R5RS 'write' and 'display' */
#define SCM_USE_WRITER 1

/* The size of `char', as computed by sizeof. */
#define SIZEOF_CHAR 1

/* The size of `double', as computed by sizeof. */
#define SIZEOF_DOUBLE 8

/* The size of `float', as computed by sizeof. */
#define SIZEOF_FLOAT 4

/* The size of `int', as computed by sizeof. */
#define SIZEOF_INT 4

/* The size of `int16_t', as computed by sizeof. */
#define SIZEOF_INT16_T 2

/* The size of `int32_t', as computed by sizeof. */
#define SIZEOF_INT32_T 4

/* The size of `int64_t', as computed by sizeof. */
#define SIZEOF_INT64_T 8

/* The size of `int8_t', as computed by sizeof. */
#define SIZEOF_INT8_T 1

/* The size of `intmax_t', as computed by sizeof. */
#define SIZEOF_INTMAX_T 8

/* The size of `intptr_t', as computed by sizeof. */
#define SIZEOF_INTPTR_T 8

/* The size of `long', as computed by sizeof. */
#define SIZEOF_LONG 8

/* The size of `long double', as computed by sizeof. */
#define SIZEOF_LONG_DOUBLE 16

/* The size of `long long', as computed by sizeof. */
#define SIZEOF_LONG_LONG 8

/* The size of `short', as computed by sizeof. */
#define SIZEOF_SHORT 2

/* The size of `size_t', as computed by sizeof. */
#define SIZEOF_SIZE_T 8

/* The size of `void*', as computed by sizeof. */
#define SIZEOF_VOIDP 8

/* The size of `void *', as computed by sizeof. */
#define SIZEOF_VOID_P 8

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

/* Version number of package */
#define VERSION "0.8.5"

/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
   significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined AC_APPLE_UNIVERSAL_BUILD
# if defined __BIG_ENDIAN__
#  define WORDS_BIGENDIAN 1
# endif
#else
# ifndef WORDS_BIGENDIAN
/* #  undef WORDS_BIGENDIAN */
# endif
#endif

/* Define to 1 if it is needed to enable strcasecmp(3). */
#if SCM_COMPILING_LIBSSCM
#define _BSD_SOURCE 1
#endif

/* Define to 200112L to enable posix_memalign(3). */
#if SCM_COMPILING_LIBSSCM
#define _POSIX_C_SOURCE 200112L
#endif

/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
   #define below would cause a syntax error. */
/* #undef _UINT32_T */

/* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
   #define below would cause a syntax error. */
/* #undef _UINT64_T */

/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
   #define below would cause a syntax error. */
/* #undef _UINT8_T */

/* Define to 500 to enable strdup(3). */
#if SCM_COMPILING_LIBSSCM
#define _XOPEN_SOURCE 500
#endif

/* Define to 1 if type `char' is unsigned and you are not using gcc.  */
#ifndef __CHAR_UNSIGNED__
/* # undef __CHAR_UNSIGNED__ */
#endif

/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */

/* Define to `__inline__' or `__inline' if that's what the C compiler
   calls it, or to nothing if 'inline' is not supported under any name.  */
#ifndef __cplusplus
/* #undef inline */
#endif

/* Define to the type of a signed integer type of width exactly 16 bits if
   such a type exists and the standard includes do not define it. */
/* #undef int16_t */

/* Define to the type of a signed integer type of width exactly 32 bits if
   such a type exists and the standard includes do not define it. */
/* #undef int32_t */

/* Define to the type of a signed integer type of width exactly 64 bits if
   such a type exists and the standard includes do not define it. */
/* #undef int64_t */

/* Define to the type of a signed integer type of width exactly 8 bits if such
   a type exists and the standard includes do not define it. */
/* #undef int8_t */

/* Define to the widest signed integer type if <stdint.h> and <inttypes.h> do
   not define. */
/* #undef intmax_t */

/* Define to the type of a signed integer type wide enough to hold a pointer,
   if such a type exists, and if the system does not define it. */
/* #undef intptr_t */

/* Define to the equivalent of the C99 'restrict' keyword, or to
   nothing if this is not supported.  Do not define if restrict is
   supported directly.  */
#define restrict __restrict
/* Work around a bug in Sun C++: it does not support _Restrict or
   __restrict__, even though the corresponding Sun C compiler ends up with
   "#define restrict _Restrict" or "#define restrict __restrict__" in the
   previous line.  Perhaps some future version of Sun C++ will work with
   restrict; if so, hopefully it defines __RESTRICT like Sun C does.  */
#if defined __SUNPRO_CC && !defined __RESTRICT
# define _Restrict
# define __restrict__
#endif

/* Define to `unsigned int' if <sys/types.h> does not define. */
/* #undef size_t */

/* Define to `int' if <sys/types.h> does not define. */
/* #undef ssize_t */

/* Define to the type of an unsigned integer type of width exactly 16 bits if
   such a type exists and the standard includes do not define it. */
/* #undef uint16_t */

/* Define to the type of an unsigned integer type of width exactly 32 bits if
   such a type exists and the standard includes do not define it. */
/* #undef uint32_t */

/* Define to the type of an unsigned integer type of width exactly 64 bits if
   such a type exists and the standard includes do not define it. */
/* #undef uint64_t */

/* Define to the type of an unsigned integer type of width exactly 8 bits if
   such a type exists and the standard includes do not define it. */
/* #undef uint8_t */

/* Define to the widest unsigned integer type if <stdint.h> and <inttypes.h>
   do not define. */
/* #undef uintmax_t */

/* Define to the type of an unsigned integer type wide enough to hold a
   pointer, if such a type exists, and if the system does not define it. */
/* #undef uintptr_t */

/* Define to empty if the keyword `volatile' does not work. Warning: valid
   code using `volatile' can become incorrect without. Disable with care. */
/* #undef volatile */


/* FIXME: temporary solution */
#include "config-old.h"

#endif /* __SIGSCHEME_CONFIG_H */