xref: /original-bsd/usr.bin/f77/libF77/CCI/mclock_.c (revision bdd86a84)
1 /*
2  *	@(#)mclock_.c	5.1 (Berkeley) 11/03/86
3  */
4 
5 long int  mclock_()
6   {
7   int  buf[6];
8   times(buf);
9   return(buf[0]+buf[2]+buf[3]);
10   }
11