Remove useless unused "sqr" function

git-svn-id: https://svn.eduke32.com/eduke32@7597 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2019-04-18 17:24:55 +00:00 committed by Christoph Oelckers
parent e35e516c02
commit 5052addc67

View file

@ -137,8 +137,6 @@ static FORCE_INLINE int32_t roundscale(int32_t eax, int32_t edx, int32_t ecx)
return scaleadd(eax, edx, ecx / 2, ecx);
}
static FORCE_INLINE int32_t sqr(int32_t a) { return a * a; }
#if defined(__GNUC__) && defined(GEKKO)
// GCC Inline Assembler version (PowerPC)