Changed all the celt*int*_t types to remove the _t suffix, which is reserved
by POSIX. The other _t types that are not part of the API are still there
for now. Also, got rid of all that was left of the 64-bit types.
diff --git a/tests/mathops-test.c b/tests/mathops-test.c
index f0e6e22..bb854fa 100644
--- a/tests/mathops-test.c
+++ b/tests/mathops-test.c
@@ -19,7 +19,7 @@
 
 void testdiv(void)
 {
-   celt_int32_t i;
+   celt_int32 i;
    for (i=1;i<=327670;i++)
    {
       double prod;
@@ -40,7 +40,7 @@
 
 void testsqrt(void)
 {
-   celt_int32_t i;
+   celt_int32 i;
    for (i=1;i<=1000000000;i++)
    {
       double ratio;
@@ -58,7 +58,7 @@
 
 void testrsqrt(void)
 {
-   celt_int32_t i;
+   celt_int32 i;
    for (i=1;i<=2000000;i++)
    {
       double ratio;