xref: /csrg-svn/usr.bin/pascal/libpc/CLCK.c (revision 40865)
1 /*-
2  * Copyright (c) 1979 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)CLCK.c	1.3 (Berkeley) 04/09/90";
10 #endif /* not lint */
11 
12 long
13 CLCK()
14 {
15 	long	tim[4];
16 
17 	times(tim);
18 	return (tim[0] * 50) / 3;
19 }
20