diff options
author | 2024-08-03 23:40:31 +0100 | |
---|---|---|
committer | 2024-08-23 20:37:37 +0100 | |
commit | 83da606072ce272eb053d4e1497d77e647cfecae (patch) | |
tree | 71d0110881ff8685184c5f4ab720cc8d49c24678 /src/noreturn.h | |
parent | acbd30e0427b16f885f96aed59881ec04eff25bc (diff) | |
download | sst-83da606072ce272eb053d4e1497d77e647cfecae.tar.gz sst-83da606072ce272eb053d4e1497d77e647cfecae.zip |
Revise syntax macros and add a ton of branch hints
My new programming style is branch hints. All non-confusing branches
must be hinted when I can be bothered. It's faster, sometimes, maybe.
Also, start trying to use more signed sizes in at least some of the
places where it makes sense. Unsigned sizes are surprisingly
error-prone!
Diffstat (limited to 'src/noreturn.h')
-rw-r--r-- | src/noreturn.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/noreturn.h b/src/noreturn.h deleted file mode 100644 index 81b2bae..0000000 --- a/src/noreturn.h +++ /dev/null @@ -1,11 +0,0 @@ -/* This file is dedicated to the public domain. */ - -#ifndef INC_NORETURN_H -#define INC_NORETURN_H - -#undef noreturn -#define noreturn _Noreturn void - -#endif - -// vi: sw=4 ts=4 noet tw=80 cc=80 |