home *** CD-ROM | disk | FTP | other *** search
- /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * *
- * Copyright (c) 1997 MathSoft, Inc. All Rights Reserved. *
- * *
- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
- /*
- * Function: mod ( x, y )
- *
- * Description:
- * mod() calculates the remainder of x divided by y.
- * mod ( x, y ) is equivilant to rem ( x, y), where
- * rem is a builtin function.
- *
- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-
- function mod ( x, y );
-
- mod = rem (x, y);
-
- end;
-