1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

Update comment to reflect addition of integer boundary constants

This commit is contained in:
Tevo 2020-09-06 21:19:01 -03:00 committed by Oliver Schmidt
parent 23a8b2c303
commit 1e7a9e44af

View File

@ -38,7 +38,8 @@
/* If we have <stdint.h>, include it; otherwise, adapt types from <stddef.h>.
/* If we have <stdint.h>, include it; otherwise, adapt types from <stddef.h>
** and define integer boundary constants.
** gcc and msvc don't define __STDC_VERSION__ without special flags, so check
** for them explicitly. Undefined symbols are replaced by zero; so, checks for
** defined(__GNUC__) and defined(_MSC_VER) aren't necessary.