xref: /original-bsd/usr.bin/f77/libF77/CCI/mclock_.c (revision 60e1d6e0)
1 /*-
2  * Copyright (c) 1991 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Computer Consoles Inc.
7  *
8  * %sccs.include.proprietary.c%
9  */
10 
11 #ifndef lint
12 static char sccsid[] = "@(#)mclock_.c	5.2 (Berkeley) 04/12/91";
13 #endif /* not lint */
14 
15 long int  mclock_()
16   {
17   int  buf[6];
18   times(buf);
19   return(buf[0]+buf[2]+buf[3]);
20   }
21