1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-24 09:27:52 +03:00

Add some noreturn attributes based on compiler recommendations

This commit is contained in:
Peter Eisentraut
2014-08-13 22:40:48 -04:00
parent faa14acc9b
commit 1d678bf7bc
5 changed files with 5 additions and 5 deletions

View File

@@ -114,6 +114,6 @@ extern void scanner_finish(core_yyscan_t yyscanner);
extern int core_yylex(core_YYSTYPE *lvalp, YYLTYPE *llocp,
core_yyscan_t yyscanner);
extern int scanner_errposition(int location, core_yyscan_t yyscanner);
extern void scanner_yyerror(const char *message, core_yyscan_t yyscanner);
extern void scanner_yyerror(const char *message, core_yyscan_t yyscanner) __attribute__((noreturn));
#endif /* SCANNER_H */