commit | e908591baaf74db521c973369b15951184e2134b | [log] [tgz] |
---|---|---|
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | Wed Apr 30 05:35:18 2014 +0300 |
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | Wed Apr 30 05:35:18 2014 +0300 |
tree | 5433adf55ee52e4f61111855bd764a9c66bd3913 | |
parent | b1ce37d32e1b77373a86d27d1f1f925891a402d1 [diff] [blame] |
py: Abstract no-return attribute for functions a bit.
diff --git a/py/mpconfig.h b/py/mpconfig.h index 13918e8..04d4a7d 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h
@@ -230,3 +230,6 @@ #define INT_FMT "%d" #endif #endif //INT_FMT + +// Modifier for function which doesn't return +#define NORETURN __attribute__((noreturn))