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

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)vadefs.h 1.2 98/03/02 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 HAVE_STDARG_H
  32. # include <stdarg.h>
  33. #else
  34. # include <varargs.h>
  35. #endif
  36. #if (defined(__linux__) || defined(__linux) || defined(sun)) && 
  37. (defined(__ppc) || defined(__PPC) || defined(powerpc))
  38. # ifndef VA_LIST_IS_ARRAY
  39. # define VA_LIST_IS_ARRAY
  40. # endif
  41. #endif
  42. /*
  43.  * __va_copy() is used by GCC 2.8 or newer until va_copy() becomes
  44.  * a final ISO standard.
  45.  */
  46. #if !defined(va_copy) && !defined(HAVE_VA_COPY)
  47. # if defined(__va_copy)
  48. # define va_copy(to, from) __va_copy(to, from)
  49. # endif
  50. #endif
  51. /*
  52.  * va_copy() is a Solaris extension to provide a portable way to perform a
  53.  * variable argument list "bookmarking" function.
  54.  * If it is not available via stdarg.h, use a simple assignement for backward
  55.  * compatibility.
  56.  */
  57. #if !defined(va_copy) && !defined(HAVE_VA_COPY)
  58. # define va_copy(to, from) ((to) = (from))
  59. #endif
  60. /*
  61.  * I don't know any portable way to get an arbitrary
  62.  * C object from a var arg list so I use a
  63.  * system-specific routine __va_arg_list() that knows
  64.  * if 'va_list' is an array. You will not be able to
  65.  * assign the value of __va_arg_list() but it works
  66.  * to be used as an argument of a function.
  67.  * It is a requirement for recursive printf to be able
  68.  * to use this function argument. If your system
  69.  * defines va_list to be an array you need to know this
  70.  * via autoconf or another mechanism.
  71.  * It would be nice to have something like
  72.  * __va_arg_list() in stdarg.h
  73.  */
  74. #ifdef VA_LIST_IS_ARRAY
  75. # define __va_arg_list(list) va_arg(list, void *)
  76. #else
  77. # define __va_arg_list(list) va_arg(list, va_list)
  78. #endif
  79. #endif /* _VADEFS_H */