18 lines
191 B
C
18 lines
191 B
C
//
|
|
// Created by erki on 23.02.21.
|
|
//
|
|
|
|
#ifndef C_ANALYZER_STUFF_H
|
|
#define C_ANALYZER_STUFF_H
|
|
|
|
void f()
|
|
{
|
|
int a = 4;
|
|
int b = 6;
|
|
|
|
int c = a + b;
|
|
(void)c;
|
|
}
|
|
|
|
#endif //C_ANALYZER_STUFF_H
|