diff options
author | 2012-09-06 13:57:51 +0000 | |
---|---|---|
committer | 2012-09-06 13:57:51 +0000 | |
commit | 788d36d7f828785ad36bee52cec05428b1517b04 (patch) | |
tree | 79a53aad6940ad1ae898146b240ed80bb889fb0c /lib/libc | |
parent | missing letter in previous; (diff) | |
download | wireguard-openbsd-788d36d7f828785ad36bee52cec05428b1517b04.tar.xz wireguard-openbsd-788d36d7f828785ad36bee52cec05428b1517b04.zip |
make it easy to build without debug code
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/asr/asr_private.h | 4 |
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) |