/*
 * Copyright 1990 by Baylor College of Medicine ALL RIGHTS RESERVED. 
 *
 * This program is subject to a license agreement between 
 * Baylor College of Medicine and MIT. Any use inconsistent with
 * said license and any use by persons other than the faculty, 
 * students and staff at MIT or any use on a computer not operated 
 * as part of the Athena Computing Environment (ACE) is expressly 
 * prohibited.
 */
/****************************************************************
 * File: tst.c
 * Date: 05/14/91
 *
 * Description:
 *   This is a test program for the license library.
 *
 * Revisions:
 ****************************************************************/
#include <stdio.h>

#include "License.h"

#define HOST_ID 0x40101b9

main()
{
	static long host_id = 0x40101b9;
	License *lic;

	lic = lic_init(LIC_MACHINE_SPECIFIC);

	lic_host(lic,HOST_ID);

	lic_print(lic,stdout);
}
