facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
20 lines
393 B
C
20 lines
393 B
C
int an_int;
|
|
char *a_char_ptr;
|
|
typedef int (*a_typedef) (int main);
|
|
struct struct_forward;
|
|
enum enum_forward;
|
|
union union_forward;
|
|
typedef int an_array[50];
|
|
struct a_struct { int foo; };
|
|
union a_union { int bar; };
|
|
enum an_enum { FOO };
|
|
|
|
a_typedef a;
|
|
struct struct_forward *x;
|
|
union union_forward *y;
|
|
enum enum_forward *z;
|
|
struct a_struct *xx;
|
|
union a_union *yy;
|
|
enum an_enum *zz;
|
|
an_array ar;
|