diff options
Diffstat (limited to 'src/unreachable.h')
-rw-r--r-- | src/unreachable.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/unreachable.h b/src/unreachable.h deleted file mode 100644 index 99c82b5..0000000 --- a/src/unreachable.h +++ /dev/null @@ -1,14 +0,0 @@ -/* This file is dedicated to the public domain. */ - -#ifndef INC_UNREACHABLE_H -#define INC_UNREACHABLE_H - -#if defined(__GNUC__) || defined(__clang__) -#define unreachable __builtin_unreachable() -#else -#define unreachable do; while (0) -#endif - -#endif - -// vi: sw=4 ts=4 noet tw=80 cc=80 |