Files
tests/C_C++/emil_header_guards/bc.h
2024-07-22 19:38:36 +02:00

12 lines
76 B
C

#ifndef B_H
#define B_H
#include "ac.h"
struct b {
int i;
};
#endif