shithub: drawterm-fdroid

ref: e10ae98365bfd6d4f0cfb67304e32a5f16483f7d
dir: /libmp/mpfield.c/

View raw version
#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;
}