Remove module dependency

Elinimate macros defined by modules locally in the functions that are
moving to the new constant-time module.

Signed-off-by: gabor-mezei-arm <gabor.mezei@arm.com>
diff --git a/library/bignum.c b/library/bignum.c
index da115a7..48ab24c 100644
--- a/library/bignum.c
+++ b/library/bignum.c
@@ -1277,7 +1277,7 @@
     ret |= y & cond;
 
 
-    ret = ret >> ( biL - 1 );
+    ret = ret >> ( sizeof( mbedtls_mpi_uint ) * 8 - 1 );
 
     return (unsigned) ret;
 }