diff options
| author | rajdakin <rajdakin@gmail.com> | 2024-09-07 20:53:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-07 20:53:51 +0200 |
| commit | f30d75ae5dba339bfc95229894b22fd73e3fdc14 (patch) | |
| tree | 5cd75da181f43a7aaf29cab121069d9dba85aa2d /wrapperhelper/example-libc.h | |
| parent | e087e7782ca9b2ce6c8ec99706a352b1c6ca12bc (diff) | |
| download | box64-f30d75ae5dba339bfc95229894b22fd73e3fdc14.tar.gz box64-f30d75ae5dba339bfc95229894b22fd73e3fdc14.zip | |
[WRAPPERHELPER] General improvements (#1804)
* [WRAPPERHELPER] Automatic headers detection, various bug fixes, added some cast support * [WRAPPERHELPER] Keep comments untouched
Diffstat (limited to 'wrapperhelper/example-libc.h')
| -rw-r--r-- | wrapperhelper/example-libc.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/wrapperhelper/example-libc.h b/wrapperhelper/example-libc.h index 8125f75e..81850c51 100644 --- a/wrapperhelper/example-libc.h +++ b/wrapperhelper/example-libc.h @@ -2,34 +2,6 @@ #define __USE_MISC 1 #define PORTMAP -// Based on /usr/include/clang/Basic/TokenKinds.def -// Alternate spelling for various tokens. There are GCC extensions in all -// languages, but should not be disabled in strict conformance mode. -#define __alignof__ __alignof -#define __asm asm -#define __asm__ asm -#define __complex _Complex -#define __complex__ _Complex -#define __const const -#define __const__ const -#define __decltype decltype -#define __imag__ __imag -#define __inline inline -#define __inline__ inline -#define __nullptr nullptr -#define __real__ __real -#define __restrict restrict -#define __restrict__ restrict -#define __signed signed -#define __signed__ signed -#define __typeof typeof -#define __typeof__ typeof -#define __volatile volatile -#define __volatile__ volatile - -typedef __int128 __int128_t; -typedef unsigned __int128 __uint128_t; - // TODO #define inline |