mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
f307c7bebc
This required throwing out the primary rules that snax did up to help me with conflicts many years ago, but they were now getting in the way. Now the productions from primary are merged in with unary_expr.
14 lines
162 B
R
14 lines
162 B
R
void
|
|
ptrderef (int *to, int *from)
|
|
{
|
|
int x;
|
|
|
|
x = *from;
|
|
x = *from++;
|
|
x = *++from;
|
|
x = ++*from;
|
|
to = from++;
|
|
to = ++from;
|
|
*to = *from++;
|
|
*to = *++from;
|
|
}
|