prototyp.h
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)prototyp.h 1.7 98/10/08 Copyright 1995 J. Schilling */
  2. /*
  3.  * Definitions for dealing with ANSI / KR C-Compilers
  4.  *
  5.  * Copyright (c) 1995 J. Schilling
  6.  */
  7. /*
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2, or (at your option)
  11.  * any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; see the file COPYING.  If not, write to
  20.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  */
  22. #ifndef _PROTOTYP_H
  23. #define _PROTOTYP_H
  24. #ifndef PROTOTYPES
  25. /*
  26.  * If this has already been defined,
  27.  * someone else knows better than us...
  28.  */
  29. # ifdef __STDC__
  30. # if __STDC__ /* ANSI C */
  31. # define PROTOTYPES
  32. # endif
  33. # if defined(sun) && __STDC__ - 0 == 0 /* Sun C */
  34. # define PROTOTYPES
  35. # endif
  36. # endif
  37. #endif /* PROTOTYPES */
  38. /*
  39.  * If we have prototypes, we should have stdlib.h string.h stdarg.h
  40.  */
  41. #ifdef PROTOTYPES
  42. #if !(defined(SABER) && defined(sun))
  43. # ifndef HAVE_STDARG_H
  44. # define HAVE_STDARG_H
  45. # endif
  46. #endif
  47. # ifndef HAVE_STDLIB_H
  48. # define HAVE_STDLIB_H
  49. # endif
  50. # ifndef HAVE_STRING_H
  51. # define HAVE_STRING_H
  52. # endif
  53. # ifndef HAVE_STDC_HEADERS
  54. # define HAVE_STDC_HEADERS
  55. # endif
  56. # ifndef STDC_HEADERS
  57. # define STDC_HEADERS /* GNU name */
  58. # endif
  59. #endif
  60. #ifdef NO_PROTOTYPES /* Force not to use prototypes */
  61. # undef PROTOTYPES
  62. #endif
  63. #ifdef PROTOTYPES
  64. # define __PR(a) a
  65. #else
  66. # define __PR(a) ()
  67. #endif
  68. #endif /* _PROTOTYP_H */