1/**********************************************************************
2**           System: USC - Micro Second Clock
3**             File: usc.h
4**          Authors: Kees Schuerman
5**           SccsId: "@(#)usc.h	1.3 1/20/95"
6**      Description: USC Interface
7***********************************************************************/
8
9#ifndef _USC_H_
10#define _USC_H_
11
12/*
13** Type Definitions
14*/
15
16typedef unsigned long usc_time_t;
17
18
19/*
20** Global Variables
21*/
22
23extern usc_time_t usc_rollover_val;
24
25
26/*
27** Clock Primitives
28*/
29
30#if defined(__STDC__)
31extern void usc_init(void);
32extern usc_time_t usc_clock(void);
33#else /* __STDC__ */
34extern void usc_init();
35extern usc_time_t usc_clock();
36#endif /* __STDC__ */
37
38#endif /* _USC_H_ */
39
40