110502Sdlw /* 2*22915Skre * Copyright (c) 1980 Regents of the University of California. 3*22915Skre * All rights reserved. The Berkeley software License Agreement 4*22915Skre * specifies the terms and conditions for redistribution. 5*22915Skre * 6*22915Skre * @(#)i_mod.c 5.1 06/07/85 710502Sdlw */ 810502Sdlw 910502Sdlw long int i_mod(a,b) 1010502Sdlw long int *a, *b; 1110502Sdlw { 1210502Sdlw return( *a % *b); 1310502Sdlw } 14