summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/ex.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/ex.h b/inc/ex.h
index 0e235cb..ff4041b 100644
--- a/inc/ex.h
+++ b/inc/ex.h
@@ -103,8 +103,9 @@ class EX : public Stage
* @param the numerator
* @param the denominator
* @param if the modulo operator should instead be used
+ * @return if the operation overflowed
*/
- void handle_divide(signed int &s1, signed int s2, bool is_mod);
+ bool handle_divide(signed int &s1, signed int s2, bool is_mod);
};
#endif /* EX_H_INCLUDED */