7 lines
289 B
C
Vendored
7 lines
289 B
C
Vendored
/* mus-config.h -- minimal feature config for embedding s7 in calog (no Snd, no complex
|
|
* numbers, no GMP bignums). s7.c #includes this unconditionally; see its header note. */
|
|
#ifndef MUS_CONFIG_H
|
|
#define MUS_CONFIG_H
|
|
#define HAVE_COMPLEX_NUMBERS 0
|
|
#define HAVE_COMPLEX_TRIG 0
|
|
#endif
|