/* usb/types.h
 *
 * (c) 2002 Simtec Electronics
 *
 * Ben Dooks
 *
 * usb types
 *
 * $Id: types.h,v 1.7 2003/08/06 15:56:11 ben Exp $
 *
 * This Library file is part of the Simtec Electronics USB stack development
 *   suite.
 * Specific licence is granted to use this file by third parties for the
 *   development of USB device drivers.
 *
 */

#ifndef __USB_TYPES_H
#define __USB_TYPES_H "$Id: types.h,v 1.7 2003/08/06 15:56:11 ben Exp $"

/* include the system specific type information */
#include "usb/sys/types.h"

#define FALSE (0)
#define TRUE  (1)

/* UNUSED is here because it is useful, if not actually a type */
#ifndef UNUSED
#define UNUSED(x) do { (x) = (x); } while(0)
#endif

#endif /* __USB_TYPES_H */
