1 #define EQUALS(a,b) a == b 2 3 // It's important for sloc_usage.cpp that this file does not have proper 4 // include guards. 5 #ifndef FOO_DEFINED 6 #define FOO_DEFINED foo(int x)7 int foo(int x) { return x; } 8 #endif 9