1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-25 13:29:41 +00:00

Remove the casts, they are no longer needed

git-svn-id: svn://svn.cc65.org/cc65/trunk@1478 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-11-01 21:27:59 +00:00
parent 8810e38bb7
commit 46e7fbd9e5

View File

@ -13,7 +13,7 @@
static bool test(int dividend, int divisor) {
div_t result;
(long)result = (long)div(dividend, divisor);
result = div(dividend, divisor);
printf("%+d/%+d= %+d, %+d%%%+d= %+d, div()= %+d, %+d\n",
dividend, divisor, dividend / divisor,
dividend, divisor, dividend % divisor,