1 2 3 4 5 6 7 8 9 10 11 12 13 14
#pragma once #include "b.h" #ifdef C_H #error "c.h shouldn't be included twice" #endif #define C_H float bar(float x) { return x; }