mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
Merge pull request #1861 from acqn/TestcaseFix
[cc65] Testcase whitespace/comments fixes
This commit is contained in:
commit
702ec52161
@ -1,6 +1,6 @@
|
||||
|
||||
/* issue #1462 - Bit-fields are still broken */
|
||||
/* More tests on "op= expression result value" that a naive fix might fail with */
|
||||
/* When (un-)signedness involves with integral promotion */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <limits.h>
|
||||
|
@ -1,11 +1,11 @@
|
||||
/* Bug 1838 - function parameters declared as function types rather than function pointers */
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
static int failures = 0;
|
||||
|
||||
typedef int fn_t(int);
|
||||
|
||||
|
||||
int main(void)
|
||||
{
|
||||
void foo(fn_t*);
|
||||
|
@ -41,6 +41,6 @@ int main(void) {
|
||||
if (failures > 0) {
|
||||
printf("Failures: %u\n", failures);
|
||||
}
|
||||
|
||||
|
||||
return failures;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user