libargo/test/test1.h

10 lines
93 B
C
Raw Normal View History

2021-05-04 14:18:43 +00:00
#ifndef TEST1_H
#define TEST1_H
struct recursive {
int i;
struct recursive* r;
};
#endif