ref: 9fe184eb7f41fc76c2196e8d84d6f188c3469a93
dir: /libmp/mpfield.c/
#include "os.h" #include <mp.h> #include "dat.h" mpint* mpfield(mpint *N) { Mfield *f; if(N == nil || N->flags & (MPfield|MPstatic)) return N; if((f = cnfield(N)) != nil) goto Exchange; if((f = gmfield(N)) != nil) goto Exchange; return N; Exchange: setmalloctag(f, getcallerpc(&N)); mpfree(N); return (mpint*)f; }