source: rtems/c/src/exec/posix/headers/seterr.h @ 98e4ebf5

4.104.114.84.95
Last change on this file since 98e4ebf5 was 98e4ebf5, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/97 at 15:45:54

Fixed typo in the pointer to the license terms.

  • Property mode set to 100644
File size: 497 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-1997.
3 *  On-Line Applications Research Corporation (OAR).
4 *  Copyright assigned to U.S. Government, 1994.
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.OARcorp.com/rtems/license.html.
9 *
10 *  $Id$
11 */
12 
13#ifndef __POSIX_SET_ERRNO_h
14#define __POSIX_SET_ERRNO_h
15 
16#define set_errno_and_return_minus_one( _error ) \
17  { errno = (_error); return -1; }
18
19#endif
20/* end of include file */
Note: See TracBrowser for help on using the repository browser.