aboutsummaryrefslogtreecommitdiff
path: root/externals/vanilla/e_sqrt.h
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-12-31 03:00:34 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-12-31 03:00:34 +0000
commit76fd8bc21e49036a8187e7a6b75c36daa842cbc6 (patch)
tree867d0196dca747a68d7d475f16118a0b5664b971 /externals/vanilla/e_sqrt.h
parentf4006c4aceba02460d89b9ce77c2e864fac1586b (diff)
refactored d_fft.c and d_math.c into separate objectclases
svn path=/trunk/; revision=14683
Diffstat (limited to 'externals/vanilla/e_sqrt.h')
-rw-r--r--externals/vanilla/e_sqrt.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/externals/vanilla/e_sqrt.h b/externals/vanilla/e_sqrt.h
deleted file mode 100644
index 209ef02f..00000000
--- a/externals/vanilla/e_sqrt.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Copyright (c) 1997-2001 Miller Puckette and others.
-* For information on usage and redistribution, and for a DISCLAIMER OF ALL
-* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */
-
-/* these are things used in a number of objectclasses from e_sqrt.c */
-
-#include "m_pd.h"
-#include <math.h>
-
-#define LOGTEN 2.302585092994
-#define DUMTAB1SIZE 256
-#define DUMTAB2SIZE 1024
-
-#ifdef _WIN32
-#define int32 long
-#else
-#include <stdint.h>
-#define int32 int32_t
-#endif
-
-t_float q8_sqrt(t_float f);
-t_float q8_rsqrt(t_float f);