8 lines
196 B
C
8 lines
196 B
C
#define EQUALS(a,b) a == b
|
|
|
|
// It's important for sloc_usage.cpp that this file does not have proper
|
|
// include guards.
|
|
#ifndef FOO_DEFINED
|
|
#define FOO_DEFINED
|
|
int foo(int x) { return x; }
|
|
#endif
|