summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-06-07 14:40:04 -0400
committerJune McEnroe <june@causal.agency>2020-06-07 14:40:04 -0400
commitd9e6f6b9af36a5f20a12e39f6f98ba0abe99d996 (patch)
tree7830273257d46df820db23071a6e009b6855c4cf
parentAdd OpenBSD to install.sh (diff)
downloadsrc-d9e6f6b9af36a5f20a12e39f6f98ba0abe99d996.tar.gz
src-d9e6f6b9af36a5f20a12e39f6f98ba0abe99d996.zip
Call static_assert by _Static_assert
OpenBSD doesn't #define static_assert in assert.h and _Static_assert is
its real name I guess so why not?
-rw-r--r--bin/glitch.c3
-rw-r--r--bin/pngo.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/bin/glitch.c b/bin/glitch.c
index 035dcde5..3d8bc8f7 100644
--- a/bin/glitch.c
+++ b/bin/glitch.c
@@ -15,7 +15,6 @@
  */
 
 #include <arpa/inet.h>
-#include <assert.h>
 #include <err.h>
 #include <stdbool.h>
 #include <stdint.h>
@@ -125,7 +124,7 @@ static struct PACKED {
 	uint8_t filter;
 	uint8_t interlace;
 } header;
-static_assert(13 == sizeof(header), "header size");
+_Static_assert(13 == sizeof(header), "header size");
 
 static size_t pixelBits(void) {
 	switch (header.color) {
diff --git a/bin/pngo.c b/bin/pngo.c
index 28333248..78738d86 100644
--- a/bin/pngo.c
+++ b/bin/pngo.c
@@ -15,7 +15,6 @@
  */
 
 #include <arpa/inet.h>
-#include <assert.h>
 #include <err.h>
 #include <stdbool.h>
 #include <stdint.h>
@@ -134,7 +133,7 @@ static struct PACKED {
 	enum PACKED { Adaptive } filter;
 	enum PACKED { Progressive, Adam7 } interlace;
 } header;
-static_assert(13 == sizeof(header), "header size");
+_Static_assert(13 == sizeof(header), "header size");
 
 static size_t pixelBits(void) {
 	switch (header.color) {
500'>2019-11-09Avoid the reserved _A names with BIT macroJune McEnroe 2019-11-09Define macro for bit flag enumsJune McEnroe 2019-11-08Check that password is hashedJune McEnroe 2019-11-08Avoid calling getopt_long again after it returns -1June McEnroe 2019-11-08Only change AWAY status for registered clientsJune McEnroe 2019-11-07Just write the example normallyJune McEnroe 2019-11-07Include path in readlinkat errorJune McEnroe 2019-11-07Call clientConsume before clientRecvJune McEnroe 2019-11-06Use -l:filename in Linux.mkJune McEnroe 2019-11-06Fix compat.h for #defined strlcpyJune McEnroe 2019-11-06Allow unsetting LIBRESSL_PREFIXJune McEnroe 2019-11-06Document calico service configurationJune McEnroe 2019-11-06Document SASL EXTERNAL configuration in more detailJune McEnroe 2019-11-06Document pounce service configurationJune McEnroe 2019-11-06Mention Darwin and GNU/Linux in READMEJune McEnroe 2019-11-06Assume LibreSSL from brew on DarwinJune McEnroe 2019-11-06Remove -DNO_EXPLICIT_BZERO from Darwin.mkJune McEnroe 2019-11-06Don't install rc scripts or dirs on LinuxJune McEnroe