summaryrefslogtreecommitdiffstats
path: root/Modules/audioop.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-29 10:46:42 (GMT)
committerGuido van Rossum <guido@python.org>1994-08-29 10:46:42 (GMT)
commit7b1e974b4bd7c17cd90a6d03bab0aaa079d78d29 (patch)
tree5a13c893ae4c43409c154849b032af689c71fe96 /Modules/audioop.c
parent0e3da7ba50718820ac7b0e35be82a75334f48d0a (diff)
downloadcpython-7b1e974b4bd7c17cd90a6d03bab0aaa079d78d29.zip
cpython-7b1e974b4bd7c17cd90a6d03bab0aaa079d78d29.tar.gz
cpython-7b1e974b4bd7c17cd90a6d03bab0aaa079d78d29.tar.bz2
Makefile.pre.in: add $(OPT) to link command
audioop.c: fix for MPW config.c.in: save original argc/argv for Lance rotormodule.c: new coding conventions timemodule.c: add casts for Lance
Diffstat (limited to 'Modules/audioop.c')
-rw-r--r--Modules/audioop.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/audioop.c b/Modules/audioop.c
index cfb97f2..d4e020b 100644
--- a/Modules/audioop.c
+++ b/Modules/audioop.c
@@ -27,11 +27,13 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "allobjects.h"
#include "modsupport.h"
-#if defined(__CHAR_UNSIGNED__) && defined(signed)
+#if defined(__CHAR_UNSIGNED__)
+#if defined(signed)
!ERROR!; READ THE SOURCE FILE!;
/* This module currently does not work on systems where only unsigned
characters are available. Take it out of Setup. Sorry. */
#endif
+#endif
#include <math.h>