summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorEric Faurot <eric@cvs.openbsd.org>2012-09-06 13:57:52 +0000
committerEric Faurot <eric@cvs.openbsd.org>2012-09-06 13:57:52 +0000
commitece41ca97b3bef82d8231b1e5439a39bbcff8628 (patch)
tree9a7c0c0d8ee492e284a8b20515fb82e919f3a28f /lib/libc
parente2b1e937c09eab31e9340fd1df3d7f2dfb060be3 (diff)
make it easy to build without debug code
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/asr/asr_private.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/asr/asr_private.h b/lib/libc/asr/asr_private.h
index 03bd5655be1..7562ca5b190 100644
--- a/lib/libc/asr/asr_private.h
+++ b/lib/libc/asr/asr_private.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: asr_private.h,v 1.5 2012/09/05 21:49:12 eric Exp $ */
+/* $OpenBSD: asr_private.h,v 1.6 2012/09/06 13:57:51 eric Exp $ */
/*
* Copyright (c) 2012 Eric Faurot <eric@openbsd.org>
*
@@ -16,7 +16,9 @@
*/
#include <stdio.h>
+#ifndef ASRNODEBUG
#define DEBUG
+#endif
#define QR_MASK (0x1 << 15)
#define OPCODE_MASK (0xf << 11)