Add modules and examples. update readme
This commit is contained in:
4
utils/fake_libc_include/X11/Intrinsic.h
Normal file
4
utils/fake_libc_include/X11/Intrinsic.h
Normal file
@@ -0,0 +1,4 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
||||
#include "_X11_fake_defines.h"
|
||||
#include "_X11_fake_typedefs.h"
|
4
utils/fake_libc_include/X11/Xlib.h
Normal file
4
utils/fake_libc_include/X11/Xlib.h
Normal file
@@ -0,0 +1,4 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
||||
#include "_X11_fake_defines.h"
|
||||
#include "_X11_fake_typedefs.h"
|
16
utils/fake_libc_include/X11/_X11_fake_defines.h
Normal file
16
utils/fake_libc_include/X11/_X11_fake_defines.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef _X11_FAKE_DEFINES_H
|
||||
#define _X11_FAKE_DEFINES_H
|
||||
|
||||
#define Atom CARD32
|
||||
#define Bool int
|
||||
#define KeySym CARD32
|
||||
#define Pixmap CARD32
|
||||
#define Time CARD32
|
||||
#define _XFUNCPROTOBEGIN
|
||||
#define _XFUNCPROTOEND
|
||||
#define _Xconst const
|
||||
|
||||
#define _X_RESTRICT_KYWD
|
||||
#define Cardinal unsigned int
|
||||
#define Boolean int
|
||||
#endif
|
38
utils/fake_libc_include/X11/_X11_fake_typedefs.h
Normal file
38
utils/fake_libc_include/X11/_X11_fake_typedefs.h
Normal file
@@ -0,0 +1,38 @@
|
||||
#ifndef _X11_FAKE_TYPEDEFS_H
|
||||
#define _X11_FAKE_TYPEDEFS_H
|
||||
|
||||
typedef char* XPointer;
|
||||
typedef unsigned char KeyCode;
|
||||
typedef unsigned int CARD32;
|
||||
typedef unsigned long VisualID;
|
||||
typedef unsigned long XIMResetState;
|
||||
typedef unsigned long XID;
|
||||
typedef XID Window;
|
||||
typedef XID Colormap;
|
||||
typedef XID Cursor;
|
||||
typedef XID Drawable;
|
||||
typedef void* XtPointer;
|
||||
typedef XtPointer XtRequestId;
|
||||
typedef struct Display Display;
|
||||
typedef struct Screen Screen;
|
||||
typedef struct Status Status;
|
||||
typedef struct Visual Visual;
|
||||
typedef struct Widget *Widget;
|
||||
typedef struct XColor XColor;
|
||||
typedef struct XClassHint XClassHint;
|
||||
typedef struct XEvent XEvent;
|
||||
typedef struct XFontStruct XFontStruct;
|
||||
typedef struct XGCValues XGCValues;
|
||||
typedef struct XKeyEvent XKeyEvent;
|
||||
typedef struct XKeyPressedEvent XKeyPressedEvent;
|
||||
typedef struct XPoint XPoint;
|
||||
typedef struct XRectangle XRectangle;
|
||||
typedef struct XSelectionRequestEvent XSelectionRequestEvent;
|
||||
typedef struct XWindowChanges XWindowChanges;
|
||||
typedef struct _XGC _XCG;
|
||||
typedef struct _XGC *GC;
|
||||
typedef struct _XIC *XIC;
|
||||
typedef struct _XIM *XIM;
|
||||
typedef struct _XImage XImage;
|
||||
|
||||
#endif
|
2
utils/fake_libc_include/_ansi.h
Normal file
2
utils/fake_libc_include/_ansi.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
212
utils/fake_libc_include/_fake_defines.h
Normal file
212
utils/fake_libc_include/_fake_defines.h
Normal file
@@ -0,0 +1,212 @@
|
||||
#ifndef _FAKE_DEFINES_H
|
||||
#define _FAKE_DEFINES_H
|
||||
|
||||
#define NULL 0
|
||||
#define BUFSIZ 1024
|
||||
#define FOPEN_MAX 20
|
||||
#define FILENAME_MAX 1024
|
||||
|
||||
#ifndef SEEK_SET
|
||||
#define SEEK_SET 0 /* set file offset to offset */
|
||||
#endif
|
||||
#ifndef SEEK_CUR
|
||||
#define SEEK_CUR 1 /* set file offset to current plus offset */
|
||||
#endif
|
||||
#ifndef SEEK_END
|
||||
#define SEEK_END 2 /* set file offset to EOF plus offset */
|
||||
#endif
|
||||
|
||||
#define __LITTLE_ENDIAN 1234
|
||||
#define LITTLE_ENDIAN __LITTLE_ENDIAN
|
||||
#define __BIG_ENDIAN 4321
|
||||
#define BIG_ENDIAN __BIG_ENDIAN
|
||||
#define __BYTE_ORDER __LITTLE_ENDIAN
|
||||
#define BYTE_ORDER __BYTE_ORDER
|
||||
|
||||
#define EXIT_FAILURE 1
|
||||
#define EXIT_SUCCESS 0
|
||||
|
||||
#define UCHAR_MAX 255
|
||||
#define USHRT_MAX 65535
|
||||
#define UINT_MAX 4294967295U
|
||||
#define RAND_MAX 32767
|
||||
#define INT_MAX 32767
|
||||
|
||||
/* C99 inttypes.h defines */
|
||||
#define PRId8 "d"
|
||||
#define PRIi8 "i"
|
||||
#define PRIo8 "o"
|
||||
#define PRIu8 "u"
|
||||
#define PRIx8 "x"
|
||||
#define PRIX8 "X"
|
||||
#define PRId16 "d"
|
||||
#define PRIi16 "i"
|
||||
#define PRIo16 "o"
|
||||
#define PRIu16 "u"
|
||||
#define PRIx16 "x"
|
||||
#define PRIX16 "X"
|
||||
#define PRId32 "d"
|
||||
#define PRIi32 "i"
|
||||
#define PRIo32 "o"
|
||||
#define PRIu32 "u"
|
||||
#define PRIx32 "x"
|
||||
#define PRIX32 "X"
|
||||
#define PRId64 "d"
|
||||
#define PRIi64 "i"
|
||||
#define PRIo64 "o"
|
||||
#define PRIu64 "u"
|
||||
#define PRIx64 "x"
|
||||
#define PRIX64 "X"
|
||||
#define PRIdLEAST8 "d"
|
||||
#define PRIiLEAST8 "i"
|
||||
#define PRIoLEAST8 "o"
|
||||
#define PRIuLEAST8 "u"
|
||||
#define PRIxLEAST8 "x"
|
||||
#define PRIXLEAST8 "X"
|
||||
#define PRIdLEAST16 "d"
|
||||
#define PRIiLEAST16 "i"
|
||||
#define PRIoLEAST16 "o"
|
||||
#define PRIuLEAST16 "u"
|
||||
#define PRIxLEAST16 "x"
|
||||
#define PRIXLEAST16 "X"
|
||||
#define PRIdLEAST32 "d"
|
||||
#define PRIiLEAST32 "i"
|
||||
#define PRIoLEAST32 "o"
|
||||
#define PRIuLEAST32 "u"
|
||||
#define PRIxLEAST32 "x"
|
||||
#define PRIXLEAST32 "X"
|
||||
#define PRIdLEAST64 "d"
|
||||
#define PRIiLEAST64 "i"
|
||||
#define PRIoLEAST64 "o"
|
||||
#define PRIuLEAST64 "u"
|
||||
#define PRIxLEAST64 "x"
|
||||
#define PRIXLEAST64 "X"
|
||||
#define PRIdFAST8 "d"
|
||||
#define PRIiFAST8 "i"
|
||||
#define PRIoFAST8 "o"
|
||||
#define PRIuFAST8 "u"
|
||||
#define PRIxFAST8 "x"
|
||||
#define PRIXFAST8 "X"
|
||||
#define PRIdFAST16 "d"
|
||||
#define PRIiFAST16 "i"
|
||||
#define PRIoFAST16 "o"
|
||||
#define PRIuFAST16 "u"
|
||||
#define PRIxFAST16 "x"
|
||||
#define PRIXFAST16 "X"
|
||||
#define PRIdFAST32 "d"
|
||||
#define PRIiFAST32 "i"
|
||||
#define PRIoFAST32 "o"
|
||||
#define PRIuFAST32 "u"
|
||||
#define PRIxFAST32 "x"
|
||||
#define PRIXFAST32 "X"
|
||||
#define PRIdFAST64 "d"
|
||||
#define PRIiFAST64 "i"
|
||||
#define PRIoFAST64 "o"
|
||||
#define PRIuFAST64 "u"
|
||||
#define PRIxFAST64 "x"
|
||||
#define PRIXFAST64 "X"
|
||||
#define PRIdPTR "d"
|
||||
#define PRIiPTR "i"
|
||||
#define PRIoPTR "o"
|
||||
#define PRIuPTR "u"
|
||||
#define PRIxPTR "x"
|
||||
#define PRIXPTR "X"
|
||||
#define PRIdMAX "d"
|
||||
#define PRIiMAX "i"
|
||||
#define PRIoMAX "o"
|
||||
#define PRIuMAX "u"
|
||||
#define PRIxMAX "x"
|
||||
#define PRIXMAX "X"
|
||||
#define SCNd8 "d"
|
||||
#define SCNi8 "i"
|
||||
#define SCNo8 "o"
|
||||
#define SCNu8 "u"
|
||||
#define SCNx8 "x"
|
||||
#define SCNd16 "d"
|
||||
#define SCNi16 "i"
|
||||
#define SCNo16 "o"
|
||||
#define SCNu16 "u"
|
||||
#define SCNx16 "x"
|
||||
#define SCNd32 "d"
|
||||
#define SCNi32 "i"
|
||||
#define SCNo32 "o"
|
||||
#define SCNu32 "u"
|
||||
#define SCNx32 "x"
|
||||
#define SCNd64 "d"
|
||||
#define SCNi64 "i"
|
||||
#define SCNo64 "o"
|
||||
#define SCNu64 "u"
|
||||
#define SCNx64 "x"
|
||||
#define SCNdLEAST8 "d"
|
||||
#define SCNiLEAST8 "i"
|
||||
#define SCNoLEAST8 "o"
|
||||
#define SCNuLEAST8 "u"
|
||||
#define SCNxLEAST8 "x"
|
||||
#define SCNdLEAST16 "d"
|
||||
#define SCNiLEAST16 "i"
|
||||
#define SCNoLEAST16 "o"
|
||||
#define SCNuLEAST16 "u"
|
||||
#define SCNxLEAST16 "x"
|
||||
#define SCNdLEAST32 "d"
|
||||
#define SCNiLEAST32 "i"
|
||||
#define SCNoLEAST32 "o"
|
||||
#define SCNuLEAST32 "u"
|
||||
#define SCNxLEAST32 "x"
|
||||
#define SCNdLEAST64 "d"
|
||||
#define SCNiLEAST64 "i"
|
||||
#define SCNoLEAST64 "o"
|
||||
#define SCNuLEAST64 "u"
|
||||
#define SCNxLEAST64 "x"
|
||||
#define SCNdFAST8 "d"
|
||||
#define SCNiFAST8 "i"
|
||||
#define SCNoFAST8 "o"
|
||||
#define SCNuFAST8 "u"
|
||||
#define SCNxFAST8 "x"
|
||||
#define SCNdFAST16 "d"
|
||||
#define SCNiFAST16 "i"
|
||||
#define SCNoFAST16 "o"
|
||||
#define SCNuFAST16 "u"
|
||||
#define SCNxFAST16 "x"
|
||||
#define SCNdFAST32 "d"
|
||||
#define SCNiFAST32 "i"
|
||||
#define SCNoFAST32 "o"
|
||||
#define SCNuFAST32 "u"
|
||||
#define SCNxFAST32 "x"
|
||||
#define SCNdFAST64 "d"
|
||||
#define SCNiFAST64 "i"
|
||||
#define SCNoFAST64 "o"
|
||||
#define SCNuFAST64 "u"
|
||||
#define SCNxFAST64 "x"
|
||||
#define SCNdPTR "d"
|
||||
#define SCNiPTR "i"
|
||||
#define SCNoPTR "o"
|
||||
#define SCNuPTR "u"
|
||||
#define SCNxPTR "x"
|
||||
#define SCNdMAX "d"
|
||||
#define SCNiMAX "i"
|
||||
#define SCNoMAX "o"
|
||||
#define SCNuMAX "u"
|
||||
#define SCNxMAX "x"
|
||||
|
||||
/* C99 stdbool.h defines */
|
||||
#define __bool_true_false_are_defined 1
|
||||
#define false 0
|
||||
#define true 1
|
||||
|
||||
/* va_arg macros and type*/
|
||||
#define va_start(_ap, _type) __builtin_va_start((_ap))
|
||||
#define va_arg(_ap, _type) __builtin_va_arg((_ap))
|
||||
#define va_end(_list)
|
||||
|
||||
#endif
|
||||
|
||||
/* Vectors */
|
||||
#define __m128 int
|
||||
#define __m128i int
|
||||
#define __m128d int
|
||||
#define __m256 int
|
||||
#define __m256i int
|
||||
#define __m256d int
|
||||
#define __m512 int
|
||||
#define __m512i int
|
||||
#define __m512d int
|
172
utils/fake_libc_include/_fake_typedefs.h
Normal file
172
utils/fake_libc_include/_fake_typedefs.h
Normal file
@@ -0,0 +1,172 @@
|
||||
#ifndef _FAKE_TYPEDEFS_H
|
||||
#define _FAKE_TYPEDEFS_H
|
||||
|
||||
typedef int size_t;
|
||||
typedef int __builtin_va_list;
|
||||
typedef int __gnuc_va_list;
|
||||
typedef int va_list;
|
||||
typedef int __int8_t;
|
||||
typedef int __uint8_t;
|
||||
typedef int __int16_t;
|
||||
typedef int __uint16_t;
|
||||
typedef int __int_least16_t;
|
||||
typedef int __uint_least16_t;
|
||||
typedef int __int32_t;
|
||||
typedef int __uint32_t;
|
||||
typedef int __int64_t;
|
||||
typedef int __uint64_t;
|
||||
typedef int __int_least32_t;
|
||||
typedef int __uint_least32_t;
|
||||
typedef int __s8;
|
||||
typedef int __u8;
|
||||
typedef int __s16;
|
||||
typedef int __u16;
|
||||
typedef int __s32;
|
||||
typedef int __u32;
|
||||
typedef int __s64;
|
||||
typedef int __u64;
|
||||
typedef int _LOCK_T;
|
||||
typedef int _LOCK_RECURSIVE_T;
|
||||
typedef int _off_t;
|
||||
typedef int __dev_t;
|
||||
typedef int __uid_t;
|
||||
typedef int __gid_t;
|
||||
typedef int _off64_t;
|
||||
typedef int _fpos_t;
|
||||
typedef int _ssize_t;
|
||||
typedef int wint_t;
|
||||
typedef int _mbstate_t;
|
||||
typedef int _flock_t;
|
||||
typedef int _iconv_t;
|
||||
typedef int __ULong;
|
||||
typedef int __FILE;
|
||||
typedef int ptrdiff_t;
|
||||
typedef int wchar_t;
|
||||
typedef int __off_t;
|
||||
typedef int __pid_t;
|
||||
typedef int __loff_t;
|
||||
typedef int u_char;
|
||||
typedef int u_short;
|
||||
typedef int u_int;
|
||||
typedef int u_long;
|
||||
typedef int ushort;
|
||||
typedef int uint;
|
||||
typedef int clock_t;
|
||||
typedef int time_t;
|
||||
typedef int daddr_t;
|
||||
typedef int caddr_t;
|
||||
typedef int ino_t;
|
||||
typedef int off_t;
|
||||
typedef int dev_t;
|
||||
typedef int uid_t;
|
||||
typedef int gid_t;
|
||||
typedef int pid_t;
|
||||
typedef int key_t;
|
||||
typedef int ssize_t;
|
||||
typedef int mode_t;
|
||||
typedef int nlink_t;
|
||||
typedef int fd_mask;
|
||||
typedef int _types_fd_set;
|
||||
typedef int clockid_t;
|
||||
typedef int timer_t;
|
||||
typedef int useconds_t;
|
||||
typedef int suseconds_t;
|
||||
typedef int FILE;
|
||||
typedef int fpos_t;
|
||||
typedef int cookie_read_function_t;
|
||||
typedef int cookie_write_function_t;
|
||||
typedef int cookie_seek_function_t;
|
||||
typedef int cookie_close_function_t;
|
||||
typedef int cookie_io_functions_t;
|
||||
typedef int div_t;
|
||||
typedef int ldiv_t;
|
||||
typedef int lldiv_t;
|
||||
typedef int sigset_t;
|
||||
typedef int __sigset_t;
|
||||
typedef int _sig_func_ptr;
|
||||
typedef int sig_atomic_t;
|
||||
typedef int __tzrule_type;
|
||||
typedef int __tzinfo_type;
|
||||
typedef int mbstate_t;
|
||||
typedef int sem_t;
|
||||
typedef int pthread_t;
|
||||
typedef int pthread_attr_t;
|
||||
typedef int pthread_mutex_t;
|
||||
typedef int pthread_mutexattr_t;
|
||||
typedef int pthread_cond_t;
|
||||
typedef int pthread_condattr_t;
|
||||
typedef int pthread_key_t;
|
||||
typedef int pthread_once_t;
|
||||
typedef int pthread_rwlock_t;
|
||||
typedef int pthread_rwlockattr_t;
|
||||
typedef int pthread_spinlock_t;
|
||||
typedef int pthread_barrier_t;
|
||||
typedef int pthread_barrierattr_t;
|
||||
typedef int jmp_buf;
|
||||
typedef int rlim_t;
|
||||
typedef int sa_family_t;
|
||||
typedef int sigjmp_buf;
|
||||
typedef int stack_t;
|
||||
typedef int siginfo_t;
|
||||
typedef int z_stream;
|
||||
|
||||
/* C99 exact-width integer types */
|
||||
typedef int int8_t;
|
||||
typedef int uint8_t;
|
||||
typedef int int16_t;
|
||||
typedef int uint16_t;
|
||||
typedef int int32_t;
|
||||
typedef int uint32_t;
|
||||
typedef int int64_t;
|
||||
typedef int uint64_t;
|
||||
|
||||
/* C99 minimum-width integer types */
|
||||
typedef int int_least8_t;
|
||||
typedef int uint_least8_t;
|
||||
typedef int int_least16_t;
|
||||
typedef int uint_least16_t;
|
||||
typedef int int_least32_t;
|
||||
typedef int uint_least32_t;
|
||||
typedef int int_least64_t;
|
||||
typedef int uint_least64_t;
|
||||
|
||||
/* C99 fastest minimum-width integer types */
|
||||
typedef int int_fast8_t;
|
||||
typedef int uint_fast8_t;
|
||||
typedef int int_fast16_t;
|
||||
typedef int uint_fast16_t;
|
||||
typedef int int_fast32_t;
|
||||
typedef int uint_fast32_t;
|
||||
typedef int int_fast64_t;
|
||||
typedef int uint_fast64_t;
|
||||
|
||||
/* C99 integer types capable of holding object pointers */
|
||||
typedef int intptr_t;
|
||||
typedef int uintptr_t;
|
||||
|
||||
/* C99 greatest-width integer types */
|
||||
typedef int intmax_t;
|
||||
typedef int uintmax_t;
|
||||
|
||||
/* C99 stdbool.h bool type. _Bool is built-in in C99 */
|
||||
typedef _Bool bool;
|
||||
|
||||
/* Mir typedefs */
|
||||
typedef void* MirEGLNativeWindowType;
|
||||
typedef void* MirEGLNativeDisplayType;
|
||||
typedef struct MirConnection MirConnection;
|
||||
typedef struct MirSurface MirSurface;
|
||||
typedef struct MirSurfaceSpec MirSurfaceSpec;
|
||||
typedef struct MirScreencast MirScreencast;
|
||||
typedef struct MirPromptSession MirPromptSession;
|
||||
typedef struct MirBufferStream MirBufferStream;
|
||||
typedef struct MirPersistentId MirPersistentId;
|
||||
typedef struct MirBlob MirBlob;
|
||||
typedef struct MirDisplayConfig MirDisplayConfig;
|
||||
|
||||
/* xcb typedefs */
|
||||
typedef struct xcb_connection_t xcb_connection_t;
|
||||
typedef uint32_t xcb_window_t;
|
||||
typedef uint32_t xcb_visualid_t;
|
||||
|
||||
#endif
|
2
utils/fake_libc_include/_syslist.h
Normal file
2
utils/fake_libc_include/_syslist.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/aio.h
Normal file
2
utils/fake_libc_include/aio.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/alloca.h
Normal file
2
utils/fake_libc_include/alloca.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/ar.h
Normal file
2
utils/fake_libc_include/ar.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/argz.h
Normal file
2
utils/fake_libc_include/argz.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/arpa/inet.h
Normal file
2
utils/fake_libc_include/arpa/inet.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/asm-generic/int-ll64.h
Normal file
2
utils/fake_libc_include/asm-generic/int-ll64.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/assert.h
Normal file
2
utils/fake_libc_include/assert.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/complex.h
Normal file
2
utils/fake_libc_include/complex.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/cpio.h
Normal file
2
utils/fake_libc_include/cpio.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/ctype.h
Normal file
2
utils/fake_libc_include/ctype.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/dirent.h
Normal file
2
utils/fake_libc_include/dirent.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/dlfcn.h
Normal file
2
utils/fake_libc_include/dlfcn.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/emmintrin.h
Normal file
2
utils/fake_libc_include/emmintrin.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/endian.h
Normal file
2
utils/fake_libc_include/endian.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/envz.h
Normal file
2
utils/fake_libc_include/envz.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/errno.h
Normal file
2
utils/fake_libc_include/errno.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/fastmath.h
Normal file
2
utils/fake_libc_include/fastmath.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/fcntl.h
Normal file
2
utils/fake_libc_include/fcntl.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/features.h
Normal file
2
utils/fake_libc_include/features.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/fenv.h
Normal file
2
utils/fake_libc_include/fenv.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/float.h
Normal file
2
utils/fake_libc_include/float.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/fmtmsg.h
Normal file
2
utils/fake_libc_include/fmtmsg.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/fnmatch.h
Normal file
2
utils/fake_libc_include/fnmatch.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/ftw.h
Normal file
2
utils/fake_libc_include/ftw.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/getopt.h
Normal file
2
utils/fake_libc_include/getopt.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/glob.h
Normal file
2
utils/fake_libc_include/glob.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/grp.h
Normal file
2
utils/fake_libc_include/grp.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/iconv.h
Normal file
2
utils/fake_libc_include/iconv.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/ieeefp.h
Normal file
2
utils/fake_libc_include/ieeefp.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/immintrin.h
Normal file
2
utils/fake_libc_include/immintrin.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/inttypes.h
Normal file
2
utils/fake_libc_include/inttypes.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/iso646.h
Normal file
2
utils/fake_libc_include/iso646.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/langinfo.h
Normal file
2
utils/fake_libc_include/langinfo.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/libgen.h
Normal file
2
utils/fake_libc_include/libgen.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/libintl.h
Normal file
2
utils/fake_libc_include/libintl.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/limits.h
Normal file
2
utils/fake_libc_include/limits.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/linux/socket.h
Normal file
2
utils/fake_libc_include/linux/socket.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/linux/version.h
Normal file
2
utils/fake_libc_include/linux/version.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/locale.h
Normal file
2
utils/fake_libc_include/locale.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/malloc.h
Normal file
2
utils/fake_libc_include/malloc.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/math.h
Normal file
2
utils/fake_libc_include/math.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/mir_toolkit/client_types.h
Normal file
2
utils/fake_libc_include/mir_toolkit/client_types.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/monetary.h
Normal file
2
utils/fake_libc_include/monetary.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/mqueue.h
Normal file
2
utils/fake_libc_include/mqueue.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/ndbm.h
Normal file
2
utils/fake_libc_include/ndbm.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/net/if.h
Normal file
2
utils/fake_libc_include/net/if.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/netdb.h
Normal file
2
utils/fake_libc_include/netdb.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/netinet/in.h
Normal file
2
utils/fake_libc_include/netinet/in.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/netinet/tcp.h
Normal file
2
utils/fake_libc_include/netinet/tcp.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/newlib.h
Normal file
2
utils/fake_libc_include/newlib.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/nl_types.h
Normal file
2
utils/fake_libc_include/nl_types.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/openssl/err.h
Normal file
2
utils/fake_libc_include/openssl/err.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/openssl/evp.h
Normal file
2
utils/fake_libc_include/openssl/evp.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/openssl/hmac.h
Normal file
2
utils/fake_libc_include/openssl/hmac.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/openssl/ssl.h
Normal file
2
utils/fake_libc_include/openssl/ssl.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/openssl/x509v3.h
Normal file
2
utils/fake_libc_include/openssl/x509v3.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/paths.h
Normal file
2
utils/fake_libc_include/paths.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/poll.h
Normal file
2
utils/fake_libc_include/poll.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/process.h
Normal file
2
utils/fake_libc_include/process.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/pthread.h
Normal file
2
utils/fake_libc_include/pthread.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/pwd.h
Normal file
2
utils/fake_libc_include/pwd.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/reent.h
Normal file
2
utils/fake_libc_include/reent.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/regdef.h
Normal file
2
utils/fake_libc_include/regdef.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/regex.h
Normal file
2
utils/fake_libc_include/regex.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sched.h
Normal file
2
utils/fake_libc_include/sched.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/search.h
Normal file
2
utils/fake_libc_include/search.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/semaphore.h
Normal file
2
utils/fake_libc_include/semaphore.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/setjmp.h
Normal file
2
utils/fake_libc_include/setjmp.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/signal.h
Normal file
2
utils/fake_libc_include/signal.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/smmintrin.h
Normal file
2
utils/fake_libc_include/smmintrin.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/spawn.h
Normal file
2
utils/fake_libc_include/spawn.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/stdarg.h
Normal file
2
utils/fake_libc_include/stdarg.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/stdbool.h
Normal file
2
utils/fake_libc_include/stdbool.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/stddef.h
Normal file
2
utils/fake_libc_include/stddef.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/stdint.h
Normal file
2
utils/fake_libc_include/stdint.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/stdio.h
Normal file
2
utils/fake_libc_include/stdio.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/stdlib.h
Normal file
2
utils/fake_libc_include/stdlib.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/string.h
Normal file
2
utils/fake_libc_include/string.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/strings.h
Normal file
2
utils/fake_libc_include/strings.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/stropts.h
Normal file
2
utils/fake_libc_include/stropts.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sys/ioctl.h
Normal file
2
utils/fake_libc_include/sys/ioctl.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sys/ipc.h
Normal file
2
utils/fake_libc_include/sys/ipc.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sys/mman.h
Normal file
2
utils/fake_libc_include/sys/mman.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sys/msg.h
Normal file
2
utils/fake_libc_include/sys/msg.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sys/poll.h
Normal file
2
utils/fake_libc_include/sys/poll.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sys/resource.h
Normal file
2
utils/fake_libc_include/sys/resource.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sys/select.h
Normal file
2
utils/fake_libc_include/sys/select.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sys/sem.h
Normal file
2
utils/fake_libc_include/sys/sem.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sys/shm.h
Normal file
2
utils/fake_libc_include/sys/shm.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sys/socket.h
Normal file
2
utils/fake_libc_include/sys/socket.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sys/stat.h
Normal file
2
utils/fake_libc_include/sys/stat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
2
utils/fake_libc_include/sys/statvfs.h
Normal file
2
utils/fake_libc_include/sys/statvfs.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "_fake_defines.h"
|
||||
#include "_fake_typedefs.h"
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user