summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 4961879..04e0bad 100644
--- a/src/main.c
+++ b/src/main.c
@@ -20,6 +20,7 @@ int ref2(int i, int x, int y);
int new(int i, int x, int y);
int new32(int i, int x, int y);
int new32v2(int i, int x, int y);
+int new32v3(int i, int x, int y);
void bigtab_init(void);
int bigtab(int i, int x, int y);
@@ -38,7 +39,8 @@ static struct solfunc solfuncs[ ] = {
{"bigtab", bigtab},
{"new", new},
{"new32", new32},
- {"new32v2", new32v2}
+ {"new32v2", new32v2},
+ {"new32v3", new32v3}
};
#define PASSES 5