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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? libc-symbols.h

?? 俄羅斯高人Mamaich的Pocket gcc編譯器(運(yùn)行在PocketPC上)的全部源代碼。
?? H
字號(hào):
/* Support macros for making weak and strong aliases for symbols,   and for using symbol sets and linker warnings with GNU ld.   Copyright (C) 1995,1996,1997,1998,2000,2001 Free Software Foundation, Inc.   This file is part of the GNU C Library.   The GNU C Library is free software; you can redistribute it and/or   modify it under the terms of the GNU Lesser General Public   License as published by the Free Software Foundation; either   version 2.1 of the License, or (at your option) any later version.   The GNU C Library is distributed in the hope that it will be useful,   but WITHOUT ANY WARRANTY; without even the implied warranty of   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU   Lesser General Public License for more details.   You should have received a copy of the GNU Lesser General Public   License along with the GNU C Library; if not, write to the Free   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA   02111-1307 USA.  */#ifndef _LIBC_SYMBOLS_H#define _LIBC_SYMBOLS_H	1/* This file's macros are included implicitly in the compilation of every   file in the C library by -imacros.   We include config.h which is generated by configure.   It should define for us the following symbols:   * HAVE_ASM_SET_DIRECTIVE if we have `.set B, A' instead of `A = B'.   * ASM_GLOBAL_DIRECTIVE with `.globl' or `.global'.   * HAVE_GNU_LD if using GNU ld, with support for weak symbols in a.out,   and for symbol set and warning messages extensions in a.out and ELF.   * HAVE_ELF if using ELF, which supports weak symbols using `.weak'.   * HAVE_ASM_WEAK_DIRECTIVE if we have weak symbols using `.weak'.   * HAVE_ASM_WEAKEXT_DIRECTIVE if we have weak symbols using `.weakext'.   *//* This is defined for the compilation of all C library code.  features.h   tests this to avoid inclusion of stubs.h while compiling the library,   before stubs.h has been generated.  Some library code that is shared   with other packages also tests this symbol to see if it is being   compiled as part of the C library.  We must define this before including   config.h, because it makes some definitions conditional on whether libc   itself is being compiled, or just some generator program.  */#define _LIBC	1/* Enable declarations of GNU extensions, since we are compiling them.  */#define _GNU_SOURCE	1/* And we also need the data for the reentrant functions.  */#define _REENTRANT	1#include <config.h>/* The symbols in all the user (non-_) macros are C symbols.   HAVE_GNU_LD without HAVE_ELF implies a.out.  */#if defined HAVE_ASM_WEAK_DIRECTIVE || defined HAVE_ASM_WEAKEXT_DIRECTIVE# define HAVE_WEAK_SYMBOLS#endif#ifndef __SYMBOL_PREFIX# ifdef NO_UNDERSCORES#  define __SYMBOL_PREFIX# else#  define __SYMBOL_PREFIX "_"# endif#endif#ifndef C_SYMBOL_NAME# ifdef NO_UNDERSCORES#  define C_SYMBOL_NAME(name) name# else#  define C_SYMBOL_NAME(name) _##name# endif#endif#ifndef ASM_LINE_SEP# define ASM_LINE_SEP ;#endif#ifndef C_SYMBOL_DOT_NAME# define C_SYMBOL_DOT_NAME(name) .##name#endif#ifndef __ASSEMBLER__/* GCC understands weak symbols and aliases; use its interface where   possible, instead of embedded assembly language.  *//* Define ALIASNAME as a strong alias for NAME.  */# define strong_alias(name, aliasname) _strong_alias(name, aliasname)# define _strong_alias(name, aliasname) \  extern __typeof (name) aliasname __attribute__ ((alias (#name)));/* This comes between the return type and function name in   a function definition to make that definition weak.  */# define weak_function __attribute__ ((weak))# define weak_const_function __attribute__ ((weak, __const__))# ifdef HAVE_WEAK_SYMBOLS/* Define ALIASNAME as a weak alias for NAME.   If weak aliases are not available, this defines a strong alias.  */#  define weak_alias(name, aliasname) _weak_alias (name, aliasname)#  define _weak_alias(name, aliasname) \  extern __typeof (name) aliasname __attribute__ ((weak, alias (#name)));/* Declare SYMBOL as weak undefined symbol (resolved to 0 if not defined).  */#  define weak_extern(symbol) _weak_extern (symbol)#  ifdef HAVE_ASM_WEAKEXT_DIRECTIVE#   define _weak_extern(symbol) asm (".weakext " __SYMBOL_PREFIX #symbol);#  else#   define _weak_extern(symbol)    asm (".weak " __SYMBOL_PREFIX #symbol);#  endif# else#  define weak_alias(name, aliasname) strong_alias(name, aliasname)#  define weak_extern(symbol) /* Nothing. */# endif#else /* __ASSEMBLER__ */# ifdef HAVE_ASM_SET_DIRECTIVE#  define strong_alias(original, alias)		\  ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME (alias) ASM_LINE_SEP	\  .set C_SYMBOL_NAME (alias),C_SYMBOL_NAME (original)# else#  ifdef HAVE_ASM_GLOBAL_DOT_NAME#   define strong_alias(original, alias)	\  ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME (alias) ASM_LINE_SEP	\  C_SYMBOL_NAME (alias) = C_SYMBOL_NAME (original) ASM_LINE_SEP	\  ASM_GLOBAL_DIRECTIVE C_SYMBOL_DOT_NAME (alias) ASM_LINE_SEP	\  C_SYMBOL_DOT_NAME (alias) = C_SYMBOL_DOT_NAME (original)#  else#   define strong_alias(original, alias)	\  ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME (alias) ASM_LINE_SEP	\  C_SYMBOL_NAME (alias) = C_SYMBOL_NAME (original)#  endif# endif# ifdef HAVE_WEAK_SYMBOLS#  ifdef HAVE_ASM_WEAKEXT_DIRECTIVE#   define weak_alias(original, alias)	\  .weakext C_SYMBOL_NAME (alias), C_SYMBOL_NAME (original)#   define weak_extern(symbol)	\  .weakext C_SYMBOL_NAME (symbol)#  else /* ! HAVE_ASM_WEAKEXT_DIRECTIVE */#   ifdef HAVE_ASM_GLOBAL_DOT_NAME#    define weak_alias(original, alias)	\  .weak C_SYMBOL_NAME (alias) ASM_LINE_SEP			\  C_SYMBOL_NAME (alias) = C_SYMBOL_NAME (original) ASM_LINE_SEP	\  ASM_GLOBAL_DIRECTIVE C_SYMBOL_DOT_NAME (alias) ASM_LINE_SEP	\  C_SYMBOL_DOT_NAME (alias) = C_SYMBOL_DOT_NAME (original)#   else#    define weak_alias(original, alias)	\  .weak C_SYMBOL_NAME (alias) ASM_LINE_SEP	\  C_SYMBOL_NAME (alias) = C_SYMBOL_NAME (original)#   endif#   define weak_extern(symbol)	\  .weak C_SYMBOL_NAME (symbol)#  endif /* ! HAVE_ASM_WEAKEXT_DIRECTIVE */# else /* ! HAVE_WEAK_SYMBOLS */#  define weak_alias(original, alias) strong_alias(original, alias)#  define weak_extern(symbol) /* Nothing */# endif /* ! HAVE_WEAK_SYMBOLS */#endif /* __ASSEMBLER__ *//* On some platforms we can make internal function calls (i.e., calls of   functions not exported) a bit faster by using a different calling   convention.  */#ifndef internal_function# define internal_function	/* empty */#endif/* Prepare for the case that `__builtin_expect' is not available.  */#ifndef HAVE_BUILTIN_EXPECT# define __builtin_expect(expr, val) (expr)#endif/* Determine the return address.  */#define RETURN_ADDRESS(nr) \  __builtin_extract_return_addr (__builtin_return_address (nr))/* When a reference to SYMBOL is encountered, the linker will emit a   warning message MSG.  */#ifdef HAVE_GNU_LD# ifdef HAVE_ELF/* We want the .gnu.warning.SYMBOL section to be unallocated.  */#  ifdef HAVE_ASM_PREVIOUS_DIRECTIVE#   define __make_section_unallocated(section_string)	\  asm (".section " section_string "\n\t.previous");#  elif defined HAVE_ASM_POPSECTION_DIRECTIVE#   define __make_section_unallocated(section_string)	\  asm (".pushsection " section_string "\n\t.popsection");#  else#   define __make_section_unallocated(section_string)#  endif/* Tacking on "\n\t#" to the section name makes gcc put it's bogus   section attributes on what looks like a comment to the assembler.  */#  ifdef HAVE_SECTION_QUOTES#   define link_warning(symbol, msg) \  __make_section_unallocated (".gnu.warning." #symbol) \  static const char __evoke_link_warning_##symbol[]	\    __attribute__ ((section (".gnu.warning." #symbol "\"\n\t#\""))) = msg;#  else#   define link_warning(symbol, msg) \  __make_section_unallocated (".gnu.warning." #symbol) \  static const char __evoke_link_warning_##symbol[]	\    __attribute__ ((section (".gnu.warning." #symbol "\n\t#"))) = msg;#  endif# else /* Not ELF: a.out */#  ifdef HAVE_XCOFF/* XCOFF does not support .stabs.   The native aix linker will remove the .stab and .stabstr sections   The gnu linker will have a fatal error if there is a relocation for   symbol in the .stab section.  Silently disable this macro.  */#   define link_warning(symbol, msg) #  else#   define link_warning(symbol, msg)		\     asm (".stabs \"" msg "\",30,0,0,0\n\t"	\          ".stabs \"" __SYMBOL_PREFIX #symbol "\",1,0,0,0\n");#  endif /* XCOFF */# endif#else/* We will never be heard; they will all die horribly.  */# define link_warning(symbol, msg)#endif/* A canned warning for sysdeps/stub functions.  */#define	stub_warning(name) \  link_warning (name, \		"warning: " #name " is not implemented and will always fail")/**/#ifdef HAVE_GNU_LD/* Symbol set support macros.  */# ifdef HAVE_ELF/* Make SYMBOL, which is in the text segment, an element of SET.  */#  define text_set_element(set, symbol)	_elf_set_element(set, symbol)/* Make SYMBOL, which is in the data segment, an element of SET.  */#  define data_set_element(set, symbol)	_elf_set_element(set, symbol)/* Make SYMBOL, which is in the bss segment, an element of SET.  */#  define bss_set_element(set, symbol)	_elf_set_element(set, symbol)/* These are all done the same way in ELF.   There is a new section created for each set.  */#  ifdef SHARED/* When building a shared library, make the set section writable,   because it will need to be relocated at run time anyway.  */#   define _elf_set_element(set, symbol) \  static const void *__elf_set_##set##_element_##symbol##__ \    __attribute__ ((unused, section (#set))) = &(symbol)#  else#   define _elf_set_element(set, symbol) \  static const void *const __elf_set_##set##_element_##symbol##__ \    __attribute__ ((unused, section (#set))) = &(symbol)#  endif/* Define SET as a symbol set.  This may be required (it is in a.out) to   be able to use the set's contents.  */#  define symbol_set_define(set)	symbol_set_declare(set)/* Declare SET for use in this module, if defined in another module.  */#  define symbol_set_declare(set) \  extern void *const __start_##set __attribute__ ((__weak__));		\  extern void *const __stop_##set __attribute__ ((__weak__));		\  weak_extern (__start_##set) weak_extern (__stop_##set)/* Return a pointer (void *const *) to the first element of SET.  */#  define symbol_set_first_element(set)	(&__start_##set)/* Return true iff PTR (a void *const *) has been incremented   past the last element in SET.  */#  define symbol_set_end_p(set, ptr)	((ptr) >= &__stop_##set)# else	/* Not ELF: a.out.  */#  ifdef HAVE_XCOFF/* XCOFF does not support .stabs.   The native aix linker will remove the .stab and .stabstr sections   The gnu linker will have a fatal error if there is a relocation for   symbol in the .stab section.  Silently disable these macros.  */#   define text_set_element(set, symbol) #   define data_set_element(set, symbol) #   define bss_set_element(set, symbol)	 #  else#   define text_set_element(set, symbol)	\    asm (".stabs \"" __SYMBOL_PREFIX #set "\",23,0,0," __SYMBOL_PREFIX #symbol)#   define data_set_element(set, symbol)	\    asm (".stabs \"" __SYMBOL_PREFIX #set "\",25,0,0," __SYMBOL_PREFIX #symbol)#   define bss_set_element(set, symbol)	?error Must use initialized data.#  endif /* XCOFF */#  define symbol_set_define(set)	void *const (set)[1];#  define symbol_set_declare(set)	extern void *const (set)[1];#  define symbol_set_first_element(set)	&(set)[1]#  define symbol_set_end_p(set, ptr)	(*(ptr) == 0)# endif	/* ELF.  */#else/* We cannot do anything in generial.  */# define text_set_element(set, symbol) asm ("")# define data_set_element(set, symbol) asm ("")# define bss_set_element(set, symbol) asm ("")# define symbol_set_define(set)		void *const (set)[1];# define symbol_set_declare(set)	extern void *const (set)[1];# define symbol_set_first_element(set)	&(set)[1]# define symbol_set_end_p(set, ptr)	(*(ptr) == 0)#endif	/* Have GNU ld.  */#if DO_VERSIONING# define symbol_version(real, name, version) \     _symbol_version(real, name, version)# define default_symbol_version(real, name, version) \     _default_symbol_version(real, name, version)# ifdef __ASSEMBLER__#  define _symbol_version(real, name, version) \     .symver real, name##@##version#  define _default_symbol_version(real, name, version) \     .symver real, name##@##@##version# else#  define _symbol_version(real, name, version) \     __asm__ (".symver " #real "," #name "@" #version)#  define _default_symbol_version(real, name, version) \     __asm__ (".symver " #real "," #name "@@" #version)# endif#else# define symbol_version(real, name, version)# define default_symbol_version(real, name, version) \  strong_alias(real, name)#endif#endif /* libc-symbols.h */

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一区二区三区四区中文字幕| 99re亚洲国产精品| 亚洲成人激情av| 一区二区三区高清| 亚洲另类中文字| 亚洲人成精品久久久久| 久久精品一区二区| 国产精品美女一区二区在线观看| 日本一区二区三区四区| 国产亚洲综合av| 亚洲国产激情av| **性色生活片久久毛片| 亚洲激情图片小说视频| 亚洲资源在线观看| 午夜精品福利视频网站| 秋霞电影一区二区| 久久电影网电视剧免费观看| 国产精品亚洲午夜一区二区三区 | 老司机精品视频线观看86| 日韩影院精彩在线| 伦理电影国产精品| 国产成人av福利| 91免费版在线| 欧美日韩国产高清一区二区三区| 日韩一级二级三级精品视频| 久久久亚洲午夜电影| 久久精品欧美一区二区三区不卡 | 日韩国产成人精品| 另类欧美日韩国产在线| 丁香婷婷综合色啪| 色综合天天综合狠狠| 欧美日韩国产一级片| 欧美va天堂va视频va在线| 国产婷婷一区二区| 亚洲欧美激情一区二区| 日本欧美一区二区在线观看| 国产传媒日韩欧美成人| 色综合网色综合| 日韩区在线观看| 国产精品区一区二区三区| 亚洲精品免费电影| 麻豆精品久久久| fc2成人免费人成在线观看播放| 色综合天天综合网国产成人综合天 | 亚洲毛片av在线| 亚洲成人av一区二区| 狠狠色2019综合网| 91色在线porny| 日韩免费高清av| 日韩理论片在线| 美女精品一区二区| 91色综合久久久久婷婷| 欧美哺乳videos| 亚洲一区二区三区美女| 狂野欧美性猛交blacked| 99精品桃花视频在线观看| 欧美精品xxxxbbbb| 国产精品国产三级国产专播品爱网| 午夜在线成人av| 成人小视频在线| 日韩一级二级三级| 亚洲黄色免费电影| 国产成人免费9x9x人网站视频| 在线观看日韩电影| 中文字幕精品一区| 奇米精品一区二区三区四区| 99久久国产综合精品女不卡| 精品国产一区久久| 一区二区三区.www| 国产a级毛片一区| 日韩精品一区二区三区在线观看| 亚洲精品国产视频| 国产91丝袜在线播放九色| 在线综合亚洲欧美在线视频| 亚洲精品你懂的| 成人性色生活片| 久久男人中文字幕资源站| 99re成人精品视频| 久久久不卡影院| 免费久久99精品国产| 欧美在线一二三| 亚洲精品午夜久久久| 成人性生交大合| 国产亚洲欧洲997久久综合| 热久久免费视频| 制服视频三区第一页精品| 亚洲乱码国产乱码精品精98午夜| av电影在线观看完整版一区二区| 欧美mv和日韩mv国产网站| 亚洲午夜国产一区99re久久| 99国产精品久久久| 国产片一区二区| 国产一区二区免费看| 欧美成人在线直播| 免费高清不卡av| 日韩欧美在线综合网| 午夜不卡在线视频| 欧美日韩成人综合天天影院| 亚洲第四色夜色| 91成人免费电影| 夜夜嗨av一区二区三区中文字幕| 色一区在线观看| 玉米视频成人免费看| 色丁香久综合在线久综合在线观看| 中文字幕中文字幕一区二区| 成人综合在线视频| 国产精品久久久久7777按摩 | 日韩女优毛片在线| 日本欧美一区二区三区乱码 | 天涯成人国产亚洲精品一区av| 91黄色免费版| 亚洲午夜精品网| 欧美巨大另类极品videosbest| 亚洲一二三四区| 欧美在线999| 婷婷综合另类小说色区| 91超碰这里只有精品国产| 肉丝袜脚交视频一区二区| 欧美妇女性影城| 极品少妇一区二区| 国产欧美日本一区视频| gogogo免费视频观看亚洲一| 亚洲欧美福利一区二区| 91久久精品一区二区| 亚洲aaa精品| 精品成人免费观看| 成人黄色a**站在线观看| 亚洲人成精品久久久久久| 欧美日韩在线精品一区二区三区激情| 亚洲成人免费视频| 精品少妇一区二区三区视频免付费 | 欧美三级视频在线观看| 视频精品一区二区| 2020国产成人综合网| 岛国精品在线播放| 亚洲精品免费在线观看| 在线播放视频一区| 国产精品一区一区| 亚洲日本护士毛茸茸| 欧美日韩三级视频| 国产老女人精品毛片久久| 国产精品视频一二三区| 欧美无乱码久久久免费午夜一区| 久久草av在线| 亚洲精选一二三| 日韩视频一区二区| 成人伦理片在线| 日韩精品亚洲专区| 久久久夜色精品亚洲| 91福利区一区二区三区| 久久不见久久见免费视频7 | 99re热视频这里只精品| 日韩国产欧美视频| 国产欧美日韩卡一| 在线播放中文字幕一区| 成人av中文字幕| 日韩中文字幕区一区有砖一区 | 亚洲免费视频中文字幕| 欧美一区二区三区思思人| 国产成人精品免费看| 五月婷婷久久综合| 国产精品天干天干在线综合| 亚洲情趣在线观看| 亚洲精品一区二区三区99| 色综合天天视频在线观看| 精品一区二区在线观看| 亚洲精品少妇30p| 久久久综合九色合综国产精品| 日本精品一区二区三区四区的功能| 麻豆久久一区二区| 亚洲日本青草视频在线怡红院| 久久婷婷一区二区三区| 精品视频在线视频| 波多野结衣精品在线| 看片的网站亚洲| 亚洲福利视频一区二区| 国产精品国产三级国产三级人妇 | 亚洲国产一区视频| 欧美激情一二三区| 日韩三级视频在线观看| 欧美在线不卡视频| 91视频免费观看| 懂色av一区二区三区免费看| 另类小说一区二区三区| 香蕉影视欧美成人| 亚洲欧美欧美一区二区三区| 中文一区在线播放| 精品美女一区二区| 欧美日韩二区三区| 欧美在线观看视频在线| 色综合婷婷久久| av一二三不卡影片| 国产激情视频一区二区在线观看| 麻豆精品国产传媒mv男同| 亚洲r级在线视频| 一区二区不卡在线播放| 国产精品久久久久久久裸模| 国产色产综合产在线视频| 久久综合九色综合欧美就去吻| 欧美成人午夜电影|