00001 00008 /* 00009 * COPYRIGHT (c) 1989-2006. 00010 * On-Line Applications Research Corporation (OAR). 00011 * 00012 * The license and distribution terms for this file may be 00013 * found in the file LICENSE in this distribution or at 00014 * http://www.rtems.com/license/LICENSE. 00015 * 00016 * $Id: seterr.h,v 1.8 2006/01/16 15:13:58 joel Exp $ 00017 */ 00018 00019 #ifndef _RTEMS_SETERR_H 00020 #define _RTEMS_SETERR_H 00021 00028 #define rtems_set_errno_and_return_minus_one( _error ) \ 00029 do { errno = (_error); return -1; } while(0) 00030 00041 #define rtems_set_errno_and_return_minus_one_cast( _error, _cast ) \ 00042 do { errno = (_error); return (_cast) -1; } while(0) 00043 00044 #endif 00045 /* end of include file */
1.5.6