亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? stddef.h

?? gcc-core-3.4.5-20060117-1內核
?? H
字號:
/* Copyright (C) 1989, 1997, 1998, 1999, 2000, 2002 Free Software Foundation, Inc.This file is part of GCC.GCC is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GCC is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GCC; see the file COPYING.  If not, write tothe Free Software Foundation, 59 Temple Place - Suite 330,Boston, MA 02111-1307, USA.  *//* As a special exception, if you include this header file into source   files compiled by GCC, this header file does not by itself cause   the resulting executable to be covered by the GNU General Public   License.  This exception does not however invalidate any other   reasons why the executable file might be covered by the GNU General   Public License.  *//* * ISO C Standard:  7.17  Common definitions  <stddef.h> */#if (!defined(_STDDEF_H) && !defined(_STDDEF_H_) && !defined(_ANSI_STDDEF_H) \     && !defined(__STDDEF_H__)) \    || defined(__need_wchar_t) || defined(__need_size_t) \    || defined(__need_ptrdiff_t) || defined(__need_NULL) \    || defined(__need_wint_t)/* Any one of these symbols __need_* means that GNU libc   wants us just to define one data type.  So don't define   the symbols that indicate this file's entire job has been done.  */#if (!defined(__need_wchar_t) && !defined(__need_size_t)	\     && !defined(__need_ptrdiff_t) && !defined(__need_NULL)	\     && !defined(__need_wint_t))#define _STDDEF_H#define _STDDEF_H_/* snaroff@next.com says the NeXT needs this.  */#define _ANSI_STDDEF_H/* Irix 5.1 needs this.  */#define __STDDEF_H__#endif#ifndef __sys_stdtypes_h/* This avoids lossage on SunOS but only if stdtypes.h comes first.   There's no way to win with the other order!  Sun lossage.  *//* On 4.3bsd-net2, make sure ansi.h is included, so we have   one less case to deal with in the following.  */#if defined (__BSD_NET2__) || defined (____386BSD____) || (defined (__FreeBSD__) && (__FreeBSD__ < 5)) || defined(__NetBSD__)#include <machine/ansi.h>#endif/* On FreeBSD 5, machine/ansi.h does not exist anymore... */#if defined (__FreeBSD__) && (__FreeBSD__ >= 5)#include <sys/_types.h>#endif/* In 4.3bsd-net2, machine/ansi.h defines these symbols, which are   defined if the corresponding type is *not* defined.   FreeBSD-2.1 defines _MACHINE_ANSI_H_ instead of _ANSI_H_ */#if defined(_ANSI_H_) || defined(_MACHINE_ANSI_H_)#if !defined(_SIZE_T_) && !defined(_BSD_SIZE_T_)#define _SIZE_T#endif#if !defined(_PTRDIFF_T_) && !defined(_BSD_PTRDIFF_T_)#define _PTRDIFF_T#endif/* On BSD/386 1.1, at least, machine/ansi.h defines _BSD_WCHAR_T_   instead of _WCHAR_T_. */#if !defined(_WCHAR_T_) && !defined(_BSD_WCHAR_T_)#ifndef _BSD_WCHAR_T_#define _WCHAR_T#endif#endif/* Undef _FOO_T_ if we are supposed to define foo_t.  */#if defined (__need_ptrdiff_t) || defined (_STDDEF_H_)#undef _PTRDIFF_T_#undef _BSD_PTRDIFF_T_#endif#if defined (__need_size_t) || defined (_STDDEF_H_)#undef _SIZE_T_#undef _BSD_SIZE_T_#endif#if defined (__need_wchar_t) || defined (_STDDEF_H_)#undef _WCHAR_T_#undef _BSD_WCHAR_T_#endif#endif /* defined(_ANSI_H_) || defined(_MACHINE_ANSI_H_) *//* Sequent's header files use _PTRDIFF_T_ in some conflicting way.   Just ignore it.  */#if defined (__sequent__) && defined (_PTRDIFF_T_)#undef _PTRDIFF_T_#endif/* On VxWorks, <type/vxTypesBase.h> may have defined macros like   _TYPE_size_t which will typedef size_t.  fixincludes patched the   vxTypesBase.h so that this macro is only defined if _GCC_SIZE_T is   not defined, and so that defining this macro defines _GCC_SIZE_T.   If we find that the macros are still defined at this point, we must   invoke them so that the type is defined as expected.  */#if defined (_TYPE_ptrdiff_t) && (defined (__need_ptrdiff_t) || defined (_STDDEF_H_))_TYPE_ptrdiff_t;#undef _TYPE_ptrdiff_t#endif#if defined (_TYPE_size_t) && (defined (__need_size_t) || defined (_STDDEF_H_))_TYPE_size_t;#undef _TYPE_size_t#endif#if defined (_TYPE_wchar_t) && (defined (__need_wchar_t) || defined (_STDDEF_H_))_TYPE_wchar_t;#undef _TYPE_wchar_t#endif/* In case nobody has defined these types, but we aren't running under   GCC 2.00, make sure that __PTRDIFF_TYPE__, __SIZE_TYPE__, and   __WCHAR_TYPE__ have reasonable values.  This can happen if the   parts of GCC is compiled by an older compiler, that actually   include gstddef.h, such as collect2.  *//* Signed type of difference of two pointers.  *//* Define this type if we are doing the whole job,   or if we want this type in particular.  */#if defined (_STDDEF_H) || defined (__need_ptrdiff_t)#ifndef _PTRDIFF_T	/* in case <sys/types.h> has defined it. */#ifndef _T_PTRDIFF_#ifndef _T_PTRDIFF#ifndef __PTRDIFF_T#ifndef _PTRDIFF_T_#ifndef _BSD_PTRDIFF_T_#ifndef ___int_ptrdiff_t_h#ifndef _GCC_PTRDIFF_T#define _PTRDIFF_T#define _T_PTRDIFF_#define _T_PTRDIFF#define __PTRDIFF_T#define _PTRDIFF_T_#define _BSD_PTRDIFF_T_#define ___int_ptrdiff_t_h#define _GCC_PTRDIFF_T#ifndef __PTRDIFF_TYPE__#define __PTRDIFF_TYPE__ long int#endiftypedef __PTRDIFF_TYPE__ ptrdiff_t;#endif /* _GCC_PTRDIFF_T */#endif /* ___int_ptrdiff_t_h */#endif /* _BSD_PTRDIFF_T_ */#endif /* _PTRDIFF_T_ */#endif /* __PTRDIFF_T */#endif /* _T_PTRDIFF */#endif /* _T_PTRDIFF_ */#endif /* _PTRDIFF_T *//* If this symbol has done its job, get rid of it.  */#undef	__need_ptrdiff_t#endif /* _STDDEF_H or __need_ptrdiff_t.  *//* Unsigned type of `sizeof' something.  *//* Define this type if we are doing the whole job,   or if we want this type in particular.  */#if defined (_STDDEF_H) || defined (__need_size_t)#ifndef __size_t__	/* BeOS */#ifndef __SIZE_T__	/* Cray Unicos/Mk */#ifndef _SIZE_T	/* in case <sys/types.h> has defined it. */#ifndef _SYS_SIZE_T_H#ifndef _T_SIZE_#ifndef _T_SIZE#ifndef __SIZE_T#ifndef _SIZE_T_#ifndef _BSD_SIZE_T_#ifndef _SIZE_T_DEFINED_#ifndef _SIZE_T_DEFINED#ifndef _BSD_SIZE_T_DEFINED_	/* Darwin */#ifndef _SIZE_T_DECLARED	/* FreeBSD 5 */#ifndef ___int_size_t_h#ifndef _GCC_SIZE_T#ifndef _SIZET_#ifndef __size_t#define __size_t__	/* BeOS */#define __SIZE_T__	/* Cray Unicos/Mk */#define _SIZE_T#define _SYS_SIZE_T_H#define _T_SIZE_#define _T_SIZE#define __SIZE_T#define _SIZE_T_#define _BSD_SIZE_T_#define _SIZE_T_DEFINED_#define _SIZE_T_DEFINED#define _BSD_SIZE_T_DEFINED_	/* Darwin */#define _SIZE_T_DECLARED	/* FreeBSD 5 */#define ___int_size_t_h#define _GCC_SIZE_T#define _SIZET_#if defined (__FreeBSD__) && (__FreeBSD__ >= 5)/* __size_t is a typedef on FreeBSD 5!, must not trash it. */#else#define __size_t#endif#ifndef __SIZE_TYPE__#define __SIZE_TYPE__ long unsigned int#endif#if !(defined (__GNUG__) && defined (size_t))typedef __SIZE_TYPE__ size_t;#ifdef __BEOS__typedef long ssize_t;#endif /* __BEOS__ */#endif /* !(defined (__GNUG__) && defined (size_t)) */#endif /* __size_t */#endif /* _SIZET_ */#endif /* _GCC_SIZE_T */#endif /* ___int_size_t_h */#endif /* _SIZE_T_DECLARED */#endif /* _BSD_SIZE_T_DEFINED_ */#endif /* _SIZE_T_DEFINED */#endif /* _SIZE_T_DEFINED_ */#endif /* _BSD_SIZE_T_ */#endif /* _SIZE_T_ */#endif /* __SIZE_T */#endif /* _T_SIZE */#endif /* _T_SIZE_ */#endif /* _SYS_SIZE_T_H */#endif /* _SIZE_T */#endif /* __SIZE_T__ */#endif /* __size_t__ */#undef	__need_size_t#endif /* _STDDEF_H or __need_size_t.  *//* Wide character type.   Locale-writers should change this as necessary to   be big enough to hold unique values not between 0 and 127,   and not (wchar_t) -1, for each defined multibyte character.  *//* Define this type if we are doing the whole job,   or if we want this type in particular.  */#if defined (_STDDEF_H) || defined (__need_wchar_t)#ifndef __wchar_t__	/* BeOS */#ifndef __WCHAR_T__	/* Cray Unicos/Mk */#ifndef _WCHAR_T#ifndef _T_WCHAR_#ifndef _T_WCHAR#ifndef __WCHAR_T#ifndef _WCHAR_T_#ifndef _BSD_WCHAR_T_#ifndef _BSD_WCHAR_T_DEFINED_    /* Darwin */#ifndef _BSD_RUNE_T_DEFINED_	/* Darwin */#ifndef _WCHAR_T_DECLARED /* FreeBSD 5 */#ifndef _WCHAR_T_DEFINED_#ifndef _WCHAR_T_DEFINED#ifndef _WCHAR_T_H#ifndef ___int_wchar_t_h#ifndef __INT_WCHAR_T_H#ifndef _GCC_WCHAR_T#define __wchar_t__	/* BeOS */#define __WCHAR_T__	/* Cray Unicos/Mk */#define _WCHAR_T#define _T_WCHAR_#define _T_WCHAR#define __WCHAR_T#define _WCHAR_T_#define _BSD_WCHAR_T_#define _WCHAR_T_DEFINED_#define _WCHAR_T_DEFINED#define _WCHAR_T_H#define ___int_wchar_t_h#define __INT_WCHAR_T_H#define _GCC_WCHAR_T#define _WCHAR_T_DECLARED/* On BSD/386 1.1, at least, machine/ansi.h defines _BSD_WCHAR_T_   instead of _WCHAR_T_, and _BSD_RUNE_T_ (which, unlike the other   symbols in the _FOO_T_ family, stays defined even after its   corresponding type is defined).  If we define wchar_t, then we   must undef _WCHAR_T_; for BSD/386 1.1 (and perhaps others), if   we undef _WCHAR_T_, then we must also define rune_t, since    headers like runetype.h assume that if machine/ansi.h is included,   and _BSD_WCHAR_T_ is not defined, then rune_t is available.   machine/ansi.h says, "Note that _WCHAR_T_ and _RUNE_T_ must be of   the same type." */#ifdef _BSD_WCHAR_T_#undef _BSD_WCHAR_T_#ifdef _BSD_RUNE_T_#if !defined (_ANSI_SOURCE) && !defined (_POSIX_SOURCE)typedef _BSD_RUNE_T_ rune_t;#define _BSD_WCHAR_T_DEFINED_#define _BSD_RUNE_T_DEFINED_	/* Darwin */#if defined (__FreeBSD__) && (__FreeBSD__ < 5)/* Why is this file so hard to maintain properly?  In constrast to   the comment above regarding BSD/386 1.1, on FreeBSD for as long   as the symbol has existed, _BSD_RUNE_T_ must not stay defined or   redundant typedefs will occur when stdlib.h is included after this file. */#undef _BSD_RUNE_T_#endif#endif#endif#endif/* FreeBSD 5 can't be handled well using "traditional" logic above   since it no longer defines _BSD_RUNE_T_ yet still desires to export   rune_t in some cases... */#if defined (__FreeBSD__) && (__FreeBSD__ >= 5)#if !defined (_ANSI_SOURCE) && !defined (_POSIX_SOURCE)#if __BSD_VISIBLE#ifndef _RUNE_T_DECLAREDtypedef __rune_t        rune_t;#define _RUNE_T_DECLARED#endif#endif#endif#endif#ifndef __WCHAR_TYPE__#define __WCHAR_TYPE__ int#endif#ifndef __cplusplustypedef __WCHAR_TYPE__ wchar_t;#endif#endif#endif#endif#endif#endif#endif#endif /* _WCHAR_T_DECLARED */#endif /* _BSD_RUNE_T_DEFINED_ */#endif#endif#endif#endif#endif#endif#endif#endif /* __WCHAR_T__ */#endif /* __wchar_t__ */#undef	__need_wchar_t#endif /* _STDDEF_H or __need_wchar_t.  */#if defined (__need_wint_t)#ifndef _WINT_T#define _WINT_T#ifndef __WINT_TYPE__#define __WINT_TYPE__ unsigned int#endiftypedef __WINT_TYPE__ wint_t;#endif#undef __need_wint_t#endif/*  In 4.3bsd-net2, leave these undefined to indicate that size_t, etc.    are already defined.  *//*  BSD/OS 3.1 and FreeBSD [23].x require the MACHINE_ANSI_H check here.  */#if defined(_ANSI_H_) || defined(_MACHINE_ANSI_H_)/*  The references to _GCC_PTRDIFF_T_, _GCC_SIZE_T_, and _GCC_WCHAR_T_    are probably typos and should be removed before 2.8 is released.  */#ifdef _GCC_PTRDIFF_T_#undef _PTRDIFF_T_#undef _BSD_PTRDIFF_T_#endif#ifdef _GCC_SIZE_T_#undef _SIZE_T_#undef _BSD_SIZE_T_#endif#ifdef _GCC_WCHAR_T_#undef _WCHAR_T_#undef _BSD_WCHAR_T_#endif/*  The following ones are the real ones.  */#ifdef _GCC_PTRDIFF_T#undef _PTRDIFF_T_#undef _BSD_PTRDIFF_T_#endif#ifdef _GCC_SIZE_T#undef _SIZE_T_#undef _BSD_SIZE_T_#endif#ifdef _GCC_WCHAR_T#undef _WCHAR_T_#undef _BSD_WCHAR_T_#endif#endif /* _ANSI_H_ || _MACHINE_ANSI_H_ */#endif /* __sys_stdtypes_h *//* A null pointer constant.  */#if defined (_STDDEF_H) || defined (__need_NULL)#undef NULL		/* in case <stdio.h> has defined it. */#ifdef __GNUG__#define NULL __null#else   /* G++ */#ifndef __cplusplus#define NULL ((void *)0)#else   /* C++ */#define NULL 0#endif  /* C++ */#endif  /* G++ */#endif	/* NULL not defined and <stddef.h> or need NULL.  */#undef	__need_NULL#ifdef _STDDEF_H/* Offset of member MEMBER in a struct of type TYPE. */#ifndef __cplusplus#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)#else/* The cast to "char &" below avoids problems with user-defined   "operator &", which can appear in a POD type.  */#define offsetof(TYPE, MEMBER)					\  (__offsetof__ (reinterpret_cast <size_t>			\                 (&reinterpret_cast <const volatile char &>	\                  (static_cast<TYPE *> (0)->MEMBER))))#endif /* C++ */#endif /* _STDDEF_H was defined this time */#endif /* !_STDDEF_H && !_STDDEF_H_ && !_ANSI_STDDEF_H && !__STDDEF_H__	  || __need_XXX was not defined before */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲综合色在线| 91超碰这里只有精品国产| 26uuuu精品一区二区| 激情综合色播五月| 久久免费国产精品| 麻豆一区二区三区| 欧美变态tickle挠乳网站| 国产精品免费av| 北岛玲一区二区三区四区| 亚洲欧美激情在线| 欧美另类z0zxhd电影| 国产在线日韩欧美| 午夜影视日本亚洲欧洲精品| 国产中文字幕精品| 亚洲欧美怡红院| 欧美成人一区二区三区在线观看 | 婷婷综合另类小说色区| 国产精品第四页| 五月激情丁香一区二区三区| 欧美精品粉嫩高潮一区二区| 国产一二精品视频| 亚洲国产综合色| 国产精品欧美综合在线| 综合色天天鬼久久鬼色| 欧美一区二区福利视频| 成人av免费在线| 国产一区不卡在线| 免费av成人在线| 亚洲妇熟xx妇色黄| 国产精品久久毛片a| 精品久久久久久久久久久久包黑料| 99vv1com这只有精品| 国产尤物一区二区| 免费在线一区观看| 亚洲成年人网站在线观看| 国产精品家庭影院| 欧美国产日韩精品免费观看| 91精品福利在线一区二区三区| 色哟哟欧美精品| 色综合天天做天天爱| 91在线看国产| 91视视频在线直接观看在线看网页在线看 | 亚洲欧美日本在线| 国产精品久久久久久一区二区三区 | 亚洲123区在线观看| 亚洲精品国产品国语在线app| 亚洲欧美一区二区在线观看| 中文字幕巨乱亚洲| 国产精品国产三级国产| 综合久久给合久久狠狠狠97色 | 欧美这里有精品| 欧美视频在线观看一区二区| 91网站视频在线观看| 色吧成人激情小说| 欧美性色黄大片| 欧美一级二级三级蜜桃| 日本不卡视频在线观看| 麻豆中文一区二区| 国产乱一区二区| 97精品国产97久久久久久久久久久久 | 日韩精品中文字幕一区| 久久亚洲二区三区| 国产精品电影院| 石原莉奈在线亚洲二区| 极品少妇xxxx偷拍精品少妇| 国产一区激情在线| 99re这里只有精品首页| 欧美日韩日本视频| 久久品道一品道久久精品| 国产精品狼人久久影院观看方式| 一区二区三区在线免费播放| 日本特黄久久久高潮| 国产一区二区成人久久免费影院| 97精品国产露脸对白| 91精品国产一区二区三区香蕉| 久久综合给合久久狠狠狠97色69| 国产精品电影院| 捆绑调教美女网站视频一区| av一区二区三区四区| 欧美成人三级在线| 亚洲一区电影777| 国产精品一区二区久久不卡 | 午夜精品爽啪视频| 成人综合激情网| 日韩精品中文字幕在线不卡尤物 | 日韩精品福利网| 99久久夜色精品国产网站| 日韩你懂的在线播放| 1000部国产精品成人观看| 美女爽到高潮91| 欧美亚洲日本一区| 亚洲同性同志一二三专区| 久久 天天综合| 欧美一区二区三区视频在线 | 久久久精品tv| 久久精品国产亚洲一区二区三区| 91国内精品野花午夜精品| 中文成人av在线| 国产福利一区二区| 久久网站最新地址| 开心九九激情九九欧美日韩精美视频电影 | 欧美一区三区二区| 日韩黄色在线观看| 制服丝袜亚洲色图| 日韩av二区在线播放| 精品视频在线免费观看| 亚洲va韩国va欧美va| 日本韩国欧美国产| 亚洲一区二区三区小说| 99re视频精品| 亚洲免费av高清| 在线观看不卡视频| 日韩影视精彩在线| 欧美大片免费久久精品三p| 免费一级欧美片在线观看| 日韩欧美在线123| 国产麻豆一精品一av一免费 | 日本aⅴ免费视频一区二区三区 | 国产精品一区二区在线观看不卡 | 99久久精品国产一区二区三区 | 日韩精品一区二区三区中文不卡 | 亚洲另类在线视频| 欧美日韩免费不卡视频一区二区三区| 亚洲欧美国产77777| 欧美精品丝袜中出| 国产精品资源网站| 亚洲精品免费一二三区| 欧美色电影在线| 国产综合久久久久久久久久久久| 国产日韩亚洲欧美综合| 在线免费av一区| 久久精品国产99国产精品| 国产欧美一二三区| 在线视频欧美区| 国产一区二区三区日韩| 亚洲人精品午夜| 日韩欧美一卡二卡| 色天使久久综合网天天| 男男视频亚洲欧美| 亚洲人成网站影音先锋播放| 日韩视频一区二区三区在线播放| 国产99精品国产| 偷拍一区二区三区| 亚洲色图一区二区| 久久影院午夜论| 宅男噜噜噜66一区二区66| 白白色亚洲国产精品| 精品一区二区三区免费毛片爱| 亚洲少妇最新在线视频| 久久人人爽人人爽| 91精品久久久久久久99蜜桃 | 国产黄色精品网站| 美国三级日本三级久久99| 亚洲一区免费观看| 国产精品久久久久久久久动漫 | 成人动漫一区二区在线| 免费欧美日韩国产三级电影| 亚洲一区二区三区视频在线播放| 欧美国产成人在线| 久久久久久夜精品精品免费| 欧美日韩一级大片网址| 欧洲亚洲国产日韩| 在线免费观看日本欧美| 色综合一个色综合亚洲| 成人黄色网址在线观看| 风间由美性色一区二区三区| 国产一区二区三区四| 国内外成人在线| 国产一区久久久| 国产xxx精品视频大全| 国产成人精品一区二区三区四区| 国内久久婷婷综合| 岛国精品在线观看| 99久久婷婷国产| 在线影视一区二区三区| 欧美日免费三级在线| 欧美喷潮久久久xxxxx| 日韩视频一区在线观看| 精品国产网站在线观看| 国产区在线观看成人精品| 中文子幕无线码一区tr| 亚洲免费高清视频在线| 亚洲一区二区欧美日韩| 天天综合网 天天综合色| 男人的j进女人的j一区| 国产乱码一区二区三区| 91香蕉视频在线| 欧美老女人第四色| 国产午夜精品在线观看| 亚洲欧洲成人av每日更新| 亚洲国产欧美日韩另类综合| 亚洲国产精品麻豆| 精品一区二区久久久| 9人人澡人人爽人人精品| 日本高清不卡视频| 精品久久久久久最新网址| 亚洲精品成人悠悠色影视| 日韩在线一区二区| av激情亚洲男人天堂| 欧美一个色资源|