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 ca3efc8..6651ff3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -21,6 +21,7 @@ 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);
+int mastur(int i, int x, int y);
void bigtab_init(void);
int bigtab(int i, int x, int y);
@@ -40,7 +41,8 @@ static struct solfunc solfuncs[ ] = {
{"new", new},
{"new32", new32},
{"new32v2", new32v2},
- {"new32v3", new32v3}
+ {"new32v3", new32v3},
+ {"mastur", mastur}
};
#define PASSES 5