home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / threads / include / pthread / errno.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  1KB  |  42 lines

  1. /* Copyright (C) 1992, the Florida State University
  2.    Distributed by the Florida State University under the terms of the
  3.    GNU Library General Public License.
  4.  
  5. This file is part of Pthreads.
  6.  
  7. Pthreads is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU Library General Public
  9. License as published by the Free Software Foundation (version 2).
  10.  
  11. Pthreads is distributed "AS IS" in the hope that it will be
  12. useful, but WITHOUT ANY WARRANTY; without even the implied
  13. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  14. See the GNU Library General Public License for more details.
  15.  
  16. You should have received a copy of the GNU Library General Public
  17. License along with Pthreads; see the file COPYING.  If not, write
  18. to the Free Software Foundation, 675 Mass Ave, Cambridge,
  19. MA 02139, USA.
  20.  
  21. Report problems and direct all questions to:
  22.  
  23.   pthreads-bugs@ada.cs.fsu.edu
  24.  
  25.   @(#)errno.h    2.5 4/12/95
  26. */
  27.  
  28. #ifndef _pthread_errno_h
  29. #define _pthread_errno_h
  30.  
  31. #include <errno.h>
  32.  
  33. #ifndef ENOSYS
  34. #define ENOSYS EREMCHG+1
  35. #endif
  36.  
  37. #ifndef ENOTSUP
  38. #define ENOTSUP ENOSYS+1
  39. #endif
  40.  
  41. #endif /*!__pthread_errno_h*/
  42.