From a51cab7eed76c28888fef9c0ef1687dc0b295493 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sat, 9 Nov 2019 09:05:26 -0500 Subject: Avoid the reserved _A names with BIT macro --- bounce.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bounce.h b/bounce.h index c523227..aa7fda1 100644 --- a/bounce.h +++ b/bounce.h @@ -30,7 +30,7 @@ #define SOURCE_URL "https://code.causal.agency/june/pounce" #define ORIGIN "irc.invalid" -#define BIT(x) x##Bit, x = 1 << x##Bit, _##x##Bit = x##Bit +#define BIT(x) x##Bit, x = 1 << x##Bit, x##Bit_ = x##Bit #define ARRAY_LEN(a) (sizeof(a) / sizeof(a[0])) typedef unsigned char byte; -- cgit 1.4.1 me='h' onchange='this.form.submit();'> libtls for OpenSSL
summary refs log tree commit diff
path: root/tls_ocsp.c (unfollow)
Commit message (Collapse)Author
2020-12-15Import LibreSSL 3.3.1June McEnroe
2020-11-24Import LibreSSL 3.3.0June McEnroe
2020-10-22Import LibreSSL 3.2.2June McEnroe
2020-09-29Import LibreSSL 3.2.1June McEnroe
2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe
2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe
2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer work