diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/status.h | 4 | ||||
| -rw-r--r-- | include/version.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/status.h b/include/status.h index 3a23b09dc873..993b5e698fb3 100644 --- a/include/status.h +++ b/include/status.h @@ -480,6 +480,10 @@ typedef enum BcErr { /// Empty statements in POSIX for loop error. BC_ERR_POSIX_FOR, + /// POSIX's grammar does not allow a function definition right after a + /// semicolon. + BC_ERR_POSIX_FUNC_AFTER_SEMICOLON, + /// Non-POSIX exponential (scientific or engineering) number used error. BC_ERR_POSIX_EXP_NUM, diff --git a/include/version.h b/include/version.h index 296dbc79b547..eca73baf508f 100644 --- a/include/version.h +++ b/include/version.h @@ -37,6 +37,6 @@ #define BC_VERSION_H /// The current version. -#define VERSION 5.2.0 +#define VERSION 5.2.1 #endif // BC_VERSION_H |
