xref: /original-bsd/usr.bin/pascal/libpc/SCLCK.c (revision c74f8e57)
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[] = "@(#)SCLCK.c	1.3 (Berkeley) 04/09/90";
10 #endif /* not lint */
11 
12 long
13 SCLCK()
14 {
15 	long	tim[4];
16 
17 	times(tim);
18 	return (tim[1] * 50) / 3;
19 }
20