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