diff --git a/src/ssh/deucessh.h b/src/ssh/deucessh.h index ad6db796feb13ca52252476c7168a1ef51cd0ebc..bac4b68f9776b842b7a7ad8b46ae9326346a15dd 100644 --- a/src/ssh/deucessh.h +++ b/src/ssh/deucessh.h @@ -1,12 +1,14 @@ #ifndef DEUCE_SSH_H #define DEUCE_SSH_H +#include <assert.h> + #ifdef __STDC_NO_ATOMICS__ -_Static_assert(0, "stdatomic.h support required"); +static_assert(0, "stdatomic.h support required"); #endif #ifdef __STDC_NO_THREADS__ -_Static_assert(0, "threads.h support required"); +static_assert(0, "threads.h support required"); #endif #include <inttypes.h>