quakeforge/tools/qfcc/test/old/cast2.r

10 lines
114 B
R

void foo (vector x)
{
entity *ep;
int d;
//d = (int) x.y;
//ep = (entity *) d;
ep = (entity *) (int) x.y;
}