Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Datasets:
nttl050611
/
GTASA
like
0
Dataset card
Files
Files and versions
xet
Community
main
GTASA
/
moonloader
/
lib
/
libtcc
/
include
/
stdarg.h
nttl050611
Upload 2089 files
d7c5875
verified
about 1 month ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
335 Bytes
#
ifndef
_STDARG_H
#
define
_STDARG_H
typedef
__builtin_va_list va_list;
#
define
va_start __builtin_va_start
#
define
va_arg __builtin_va_arg
#
define
va_copy __builtin_va_copy
#
define
va_end __builtin_va_end
/* fix a buggy dependency on GCC in libio.h */
typedef
va_list __gnuc_va_list;
#
define
_VA_LIST_DEFINED
#
endif
/* _STDARG_H */