diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2021-11-17 22:34:57 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2021-11-17 22:34:57 +0100 |
| commit | 6232d13f5321b87ddf12a1aa36b4545da45f173d (patch) | |
| tree | 23f3316470a14136debd9d02f9e920ca2b06f4cc /src/common.hh | |
Travel3: Simple image and video display site
Reads the images and videos from filesystem and builds a site in
memroy.
Diffstat (limited to 'src/common.hh')
| -rw-r--r-- | src/common.hh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/common.hh b/src/common.hh new file mode 100644 index 0000000..4eec123 --- /dev/null +++ b/src/common.hh @@ -0,0 +1,16 @@ +#ifndef COMMON_HH +#define COMMON_HH + +#include <assert.h> + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#if HAVE_BUILTIN_UNREACHABLE +#define NOTREACHED __builtin_unreachable() +#else +#define NOTREACHED abort() +#endif + +#endif // COMMON_HH |
