/**********************************************************
 *  random_types.h 
 *	definitions for the random server interface 
 *********************************************************/

typedef struct {
	    int	lsw;
	    int	msw;
	} dbl;

typedef struct {		/* gets passed by value */
	    char  c[80];
	} string80;

typedef char	string25[25];	/* gets passed by reference */
typedef int	words256[256];
typedef int	*words;		/* variable length array */
typedef words256 comp_arr[10];
typedef int	pagearr[4096];
typedef pagearr	*page_ptr;

