]> git.sur5r.net Git - cc65/commitdiff
Removed comment about a cast that is no longer necessary
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 21 Nov 2002 21:29:15 +0000 (21:29 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 21 Nov 2002 21:29:15 +0000 (21:29 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1564 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/common/divt.s

index c36ea794483dee32e78d9bc8f87877decf0c9108..034394a9a552555779f37a356ddf65ecbdb5ba2c 100644 (file)
 ;
 ; 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 <stdlib.h>
-; 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