/* riscos/usb/sys/stdlib.h
 *
 * (c) 2002 Simtec Electronics
 *
 * Ben Dooks
 *
 * RISC OS - Include stdlib and similar functions
 * 
 * $Id: stdlib.h,v 1.4 2003/08/07 22:16:25 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 __RISCOS_USB_SYS_STDLIB_H
#define __RISCOS_USB_SYS_STDLIB_H "$Id: stdlib.h,v 1.4 2003/08/07 22:16:25 ben Exp $"

#include <stdlib.h>

/* we can use atol() to provide this function */
#define usb_chartol(__x) atol(__x)

/* pass usb_getenv to the system's getenv */
#define usb_getenv(x) getenv(x)

#endif /* __RISCOS_USB_SYS_STDLIB_H */
