Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#include "datatypes.h"
void d_cnjg(doublecomplex *r, doublecomplex *z) {
r->r = z->r;
r->i = -(z->i);
}