Skip to content

Commit a5a449b

Browse files
committed
Update Source
1 parent 5fc92e0 commit a5a449b

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

addons/misra.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ def rawlink(rawtoken):
190190

191191

192192
# Identifiers described in Section 7 "Library" of C99 Standard
193-
# Based on ISO/IEC 9899 WF14/N1256 Annex B -- Library summary
193+
# Based on ISO/IEC 9899:1999 (E) Annex B -- Library summary
194+
# (https://www.dii.uchile.cl/~daespino/files/Iso_C_1999_definition.pdf)
194195
C99_STDLIB_IDENTIFIERS = {
195196
# B.1 Diagnostics
196197
'assert.h': C90_STDLIB_IDENTIFIERS['assert.h'],
@@ -359,7 +360,8 @@ def rawlink(rawtoken):
359360
}
360361

361362
# Identifiers described in Section 7 "Library" of C11 Standard
362-
# Based on ISO/IEC 9899:201x N1570 Annex B -- Library summary
363+
# Based on ISO/IEC 9899:201x N1570 (Draft 12.04.2011) Annex B -- Library summary
364+
# (https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1570.pdf)
363365
C11_STDLIB_IDENTIFIERS = {
364366
# B.1 Diagnostics
365367
'assert.h': C99_STDLIB_IDENTIFIERS['assert.h']+ ['static_assert'],

0 commit comments

Comments
 (0)