1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-25 06:17:58 +00:00

add check for line endings containing CR.

This commit is contained in:
mrdudz
2022-11-03 18:27:10 +01:00
parent cc450706d1
commit 79fd078ae3
4 changed files with 36 additions and 11 deletions
+9 -9
View File
@@ -1,9 +1,9 @@
/* bug #1890 - Overflow in enumerator value is not detected */
#include <limits.h>
enum { a = ULONG_MAX, b } c = b;
int main(void)
{
return 0;
}
/* bug #1890 - Overflow in enumerator value is not detected */
#include <limits.h>
enum { a = ULONG_MAX, b } c = b;
int main(void)
{
return 0;
}