/*
 * RSX11M V4.0 System Definition Headers for C.
 *
 * Time parameters structure for 'gtim' function.
 * See the RSX-11M V4.0 Exec reference manual sec 5.3.38
 *
 * INCLUDE CX.H PRIOR TO INCLUDING THIS FILE
 *
 * Bob Denny
 * 19-Oct-82
 *
 */
struct	timbuf	{
		word	g_tiyr;		/* Year, since 1900 */
		word	g_timo;		/* Month, 1-12 */
		word	g_tida;		/* Day, 1-31 */
		word	g_tihr;		/* Hour (0-23) */
		word	g_timi;		/* Minute, (0-59) */
		word	g_tisc;		/* Second, (0-59) */
		word	g_tict;		/* Tick in second */
		word	g_ticp;		/* Tix per second */
		};

