/* $Id: type.h 1.1 1993/08/01 04:22:07 cg Exp cg $ */

/*
 *	Header file: commonly used types
 *
 *
 *	Copyright of this module:   Carsten Grammes, 1993
 *      Experimental Physics, University of Saarbruecken, Germany
 *
 *      Internet address: ph12hucg@rz.uni-sb.de
 *
 *	Permission to use, copy, and distribute this software and its
 *	documentation for any purpose with or without fee is hereby granted,
 *	provided that the above copyright notice appear in all copies and
 *	that both that copyright notice and this permission notice appear
 *	in supporting documentation.
 *
 *      This software is provided "as is" without express or implied warranty.
 */


#ifndef TYPE_H
#define TYPE_H

#if !defined (FALSE) || !defined (TRUE)
#define     FALSE   0
#define     TRUE    1
#endif

typedef     signed char         boolean;
typedef     unsigned short	word;

#endif
