diff options
Diffstat (limited to 'src/mathline.c')
| -rw-r--r-- | src/mathline.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mathline.c b/src/mathline.c index 7879f95..2adfc09 100644 --- a/src/mathline.c +++ b/src/mathline.c @@ -394,6 +394,8 @@ __asm__("imull %%edx \n\t" int DIV_FIXED(int a, int b) { int retval; + + if (b == 0) return 0; /* TODO: debug this! (start with alien on ferarco) */ /* _asm { |
