]> andersk Git - splint.git/blame - test/csyntax.c
noexpand always false.
[splint.git] / test / csyntax.c
CommitLineData
885824d3 1enum opcode { ONE } ;
2struct sopcode { int x; } ;
3union uopcode { int x; } ;
4
5int f()
6{
7 int opcode = 1;
8 int sopcode = 2;
9 int uopcode = 3;
10
11 return opcode + sopcode + uopcode;
12}
13
14struct stat_desc
15{
16 short opcode;
17 enum opcode x;
18} ;
19
20int main(register int x)
21{
22 return x;
23}
24
25extern unsigned x();
26extern unsigned int y;
27
28typedef char *cstring;
29extern cstring add_extension(cstring s, const cstring suffix);
30
31typedef int filename;
32extern cstring filename;
33
34extern int parseOpLine (cstring filename, cstring line);
35
This page took 0.083307 seconds and 5 git commands to generate.