mirror of
https://github.com/sigmasternchen/libargo
synced 2025-03-15 05:08:54 +00:00
9 lines
93 B
C
9 lines
93 B
C
#ifndef TEST1_H
|
|
#define TEST1_H
|
|
|
|
struct recursive {
|
|
int i;
|
|
struct recursive* r;
|
|
};
|
|
|
|
#endif
|