mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
20 lines
391 B
C
20 lines
391 B
C
/* config.h -- general configuration */
|
|
/* Copyright (c) 2009 Alex Shinn. All rights reserved. */
|
|
/* BSD-style license: http://synthcode.com/license.txt */
|
|
|
|
#ifndef USE_BOEHM
|
|
#define USE_BOEHM 1
|
|
#endif
|
|
|
|
#ifndef USE_HUFF_SYMS
|
|
#define USE_HUFF_SYMS 1
|
|
#endif
|
|
|
|
#ifndef USE_DEBUG
|
|
#define USE_DEBUG 1
|
|
#endif
|
|
|
|
#ifndef USE_STRING_STREAMS
|
|
#define USE_STRING_STREAMS 1
|
|
#endif
|
|
|