From: cuz Date: Thu, 21 Nov 2002 21:29:15 +0000 (+0000) Subject: Removed comment about a cast that is no longer necessary X-Git-Tag: V2.12.0~2069 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fc714f33c2b504118dcb4837a8e5312b1f5939da;p=cc65 Removed comment about a cast that is no longer necessary git-svn-id: svn://svn.cc65.org/cc65/trunk@1564 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/common/divt.s b/libsrc/common/divt.s index c36ea7944..034394a9a 100644 --- a/libsrc/common/divt.s +++ b/libsrc/common/divt.s @@ -11,15 +11,6 @@ ; ; div_t __fastcall__ div (int numer, int denom); ; -; Both sides of an assignment-expression must be cast to (long) -; because cc65 functions can't return structures -- yet. Example: -; -; #include -; div_t answer; -; -; (long)answer = (long)div(-41, +3); -; printf("The quotient is %d, and the remainder is %d.\n", -; answer.quot, answer.rem); .export _div