mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-29 20:13:57 +08:00
5 lines
91 B
C
5 lines
91 B
C
|
#pragma once
|
||
|
|
||
|
#define STATIC_ASSERT(condition) \
|
||
|
((void)sizeof(char[1 - 2*!(condition)]))
|