xref: /csrg-svn/usr.bin/f77/libF77/h_mod.c (revision 22898)
110490Sdlw /*
2*22898Skre  * Copyright (c) 1980 Regents of the University of California.
3*22898Skre  * All rights reserved.  The Berkeley software License Agreement
4*22898Skre  * specifies the terms and conditions for redistribution.
5*22898Skre  *
6*22898Skre  *	@(#)h_mod.c	5.1	06/07/85
710490Sdlw  */
810490Sdlw 
910490Sdlw short h_mod(a,b)
1010490Sdlw short *a, *b;
1110490Sdlw {
1210490Sdlw return( *a % *b);
1310490Sdlw }
14