summaryrefslogtreecommitdiff
path: root/support/regression/tests/implicit_int.c
blob: 374b7a786f7b9be7bdf519504c58d6711819e513 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
   The C90 implicit int rule
 */

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c89
#pragma disable_warning 85
#pragma disable_warning 225
#endif

static x;
volatile y;

void testint(void)
{
	auto a;
	static b;
	register c;
	volatile d;
}