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:
parent
8810e38bb7
commit
46e7fbd9e5
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue