home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / g++ / sys / signal.h < prev    next >
C/C++ Source or Header  |  1993-06-29  |  1KB  |  38 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2. /* 
  3. Copyright (C) 1989 Free Software Foundation
  4.     written by Doug Lea (dl@rocky.oswego.edu)
  5.  
  6. This file is part of the GNU C++ Library.  This library is free
  7. software; you can redistribute it and/or modify it under the terms of
  8. the GNU Library General Public License as published by the Free
  9. Software Foundation; either version 2 of the License, or (at your
  10. option) any later version.  This library is distributed in the hope
  11. that it will be useful, but WITHOUT ANY WARRANTY; without even the
  12. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  13. PURPOSE.  See the GNU Library General Public License for more details.
  14. You should have received a copy of the GNU Library General Public
  15. License along with this library; if not, write to the Free Software
  16. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18.  
  19. /* Partly for systems that think signal.h is is sys/ */
  20. /* But note that some systems that use sys/signal.h to define signal.h. */
  21.  
  22. #ifndef __libgxx_sys_signal_h
  23. #ifdef __sys_signal_h_recursive
  24. #include_next <sys/signal.h>
  25. #else
  26. #define __sys_signal_h_recursive
  27.  
  28. extern "C" {
  29. #define signal __hide_signal
  30. #include_next <sys/signal.h>
  31. #undef signal
  32. }
  33.  
  34. #define __libgxx_sys_signal_h 1
  35. #endif
  36. #endif
  37.  
  38.