diff options
author | Mango0x45 <thomasvoss@live.com> | 2021-01-18 21:57:58 +0000 |
---|---|---|
committer | Mango0x45 <thomasvoss@live.com> | 2021-01-18 21:57:58 +0000 |
commit | b35df7c07c59f553de4fa2903dc3185136a45f1d (patch) | |
tree | eae31364fd1a6a06c513813134aadc21e717a53b /utils/math.h | |
parent | 660f1b7a2cdc32e90f33bfa6630ea7529001cc13 (diff) | |
download | steve-bot-b35df7c07c59f553de4fa2903dc3185136a45f1d.tar steve-bot-b35df7c07c59f553de4fa2903dc3185136a45f1d.tar.gz steve-bot-b35df7c07c59f553de4fa2903dc3185136a45f1d.tar.bz2 steve-bot-b35df7c07c59f553de4fa2903dc3185136a45f1d.tar.lz steve-bot-b35df7c07c59f553de4fa2903dc3185136a45f1d.tar.xz steve-bot-b35df7c07c59f553de4fa2903dc3185136a45f1d.tar.zst steve-bot-b35df7c07c59f553de4fa2903dc3185136a45f1d.zip |
Search for BC in the PATH
Diffstat (limited to 'utils/math.h')
-rw-r--r-- | utils/math.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/utils/math.h b/utils/math.h index edfb9ee..561205a 100644 --- a/utils/math.h +++ b/utils/math.h @@ -3,24 +3,24 @@ /* Suppress unused parameter warnings */ #ifdef __GNUC__ -# define UNUSED(x) UNUSED_##x __attribute__((__unused__)) +# define UNUSED(x) UNUSED_##x __attribute__((__unused__)) #else -# define UNUSED(x) UNUSED_##x +# define UNUSED(x) UNUSED_##x #endif /* Fallthrough pseudo-keyword macro */ #if __has_attribute(__fallthrough__) -# define fallthrough __attribute__((__fallthrough__)) +# define fallthrough __attribute__((__fallthrough__)) #else -# define fallthrough \ - do { \ - } while (0) /* fallthrough */ +# define fallthrough \ + do { \ + } while (0) /* fallthrough */ #endif #define EXIT_FAILURE 1 #define EXIT_SUCCESS 0 -#define FILE_NAME "bc_input.bc" -#define TIMEOUT 5 +#define FILE_NAME "bc_input.bc" +#define TIMEOUT 5 /* Signal handlers */ void timeout_hander(int sig); |