I am porting C source code to Delphi.
I find in that source a lot of occurrences of code similar to this (Here line 190):
if (x != 0) { *sinx += (real)(0); *cosx += (real)(0); }
We are in this context:
typedef double real;
real x;
real* sinx;
real* cosx;
I wonder how adding 0 could be useful.