mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-25 21:21:14 +00:00
The unification of qc and c function symbol handling made it important that the new symbol was a proper duplicate (minus being in a table) of the old symbol. This fixes redeclared prototypes (especially for qc-style functions, not encountered for c-style). Complete with unit test :)
8 lines
119 B
R
8 lines
119 B
R
float (entity targ) visible;
|
|
float (entity targ) visible;
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
return 0; // to survive and prevail :)
|
|
}
|