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

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)vadefs.h 1.4 99/11/27 Copyright 1998 J. Schilling */
  2. /*
  3.  * Generic header for users of var args ...
  4.  *
  5.  * Includes a default definition for va_copy()
  6.  * and some magic know how about the SVr4 Power PC var args ABI
  7.  * to create a __va_arg_list() macro.
  8.  *
  9.  * Copyright (c) 1998 J. Schilling
  10.  */
  11. /*
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2, or (at your option)
  15.  * any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; see the file COPYING.  If not, write to
  24.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  */
  26. #ifndef _VADEFS_H
  27. #define _VADEFS_H
  28. #ifndef _MCONFIG_H
  29. #include <mconfig.h>
  30. #endif
  31. #ifdef PROTOTYPES
  32. /*
  33.  * For ANSI C-compilers prefer stdarg.h
  34.  */
  35. # ifdef HAVE_STDARG_H
  36. # include <stdarg.h>
  37. # else
  38. # include <varargs.h>
  39. # endif
  40. #else
  41. /*
  42.  * For K&R C-compilers prefer varargs.h
  43.  */
  44. # ifdef HAVE_VARARGS_H
  45. # include <varargs.h>
  46. # else
  47. # include <stdarg.h>
  48. # endif
  49. #endif
  50. #if (defined(__linux__) || defined(__linux) || defined(sun)) && 
  51. (defined(__ppc) || defined(__PPC) || defined(powerpc) || defined(__powerpc__))
  52. # ifndef VA_LIST_IS_ARRAY
  53. # define VA_LIST_IS_ARRAY
  54. # endif
  55. #endif
  56. /*
  57.  * __va_copy() is used by GCC 2.8 or newer until va_copy() becomes
  58.  * a final ISO standard.
  59.  */
  60. #if !defined(va_copy) && !defined(HAVE_VA_COPY)
  61. # if defined(__va_copy)
  62. # define va_copy(to, from) __va_copy(to, from)
  63. # endif
  64. #endif
  65. /*
  66.  * va_copy() is a Solaris extension to provide a portable way to perform a
  67.  * variable argument list "bookmarking" function.
  68.  * If it is not available via stdarg.h, use a simple assignement for backward
  69.  * compatibility.
  70.  */
  71. #if !defined(va_copy) && !defined(HAVE_VA_COPY)
  72. #ifdef VA_LIST_IS_ARRAY
  73. # define va_copy(to, from) ((to)[0] = (from)[0])
  74. #else
  75. # define va_copy(to, from) ((to) = (from))
  76. #endif
  77. #endif
  78. /*
  79.  * I don't know any portable way to get an arbitrary
  80.  * C object from a var arg list so I use a
  81.  * system-specific routine __va_arg_list() that knows
  82.  * if 'va_list' is an array. You will not be able to
  83.  * assign the value of __va_arg_list() but it works
  84.  * to be used as an argument of a function.
  85.  * It is a requirement for recursive printf to be able
  86.  * to use this function argument. If your system
  87.  * defines va_list to be an array you need to know this
  88.  * via autoconf or another mechanism.
  89.  * It would be nice to have something like
  90.  * __va_arg_list() in stdarg.h
  91.  */
  92. #ifdef VA_LIST_IS_ARRAY
  93. # define __va_arg_list(list) va_arg(list, void *)
  94. #else
  95. # define __va_arg_list(list) va_arg(list, va_list)
  96. #endif
  97. #endif /* _VADEFS_H */