date and time created 83/01/21 11:15:33 by dlw
authorDavid Wasley <dlw@ucbvax.Berkeley.EDU>
Sat, 22 Jan 1983 03:15:33 +0000 (19:15 -0800)
committerDavid Wasley <dlw@ucbvax.Berkeley.EDU>
Sat, 22 Jan 1983 03:15:33 +0000 (19:15 -0800)
SCCS-vsn: usr.bin/f77/libF77/i_mod.c 1.1

usr/src/usr.bin/f77/libF77/i_mod.c [new file with mode: 0644]

diff --git a/usr/src/usr.bin/f77/libF77/i_mod.c b/usr/src/usr.bin/f77/libF77/i_mod.c
new file mode 100644 (file)
index 0000000..739099c
--- /dev/null
@@ -0,0 +1,9 @@
+/*
+ *     "@(#)i_mod.c    1.1"
+ */
+
+long int i_mod(a,b)
+long int *a, *b;
+{
+return( *a % *b);
+}