mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
12 lines
139 B
C
12 lines
139 B
C
|
struct Blend_Map_Entry {
|
||
|
union {
|
||
|
float Colour[5];
|
||
|
double Point_Slope[2];
|
||
|
} Vals;
|
||
|
};
|
||
|
|
||
|
void test(struct Blend_Map_Entry* Foo)
|
||
|
{
|
||
|
}
|
||
|
|