Created
January 21, 2022 08:25
-
-
Save pr0cf5/33e96fba63a67722ff317d8061b11d90 to your computer and use it in GitHub Desktop.
Minimal C headers for making C code from IDA compile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdbool.h> | |
#define __int8 char | |
#define __int16 short | |
#define __int32 int | |
#define __int64 long long | |
#define _BOOL8 bool | |
#define _BYTE char | |
#define _DWORD int | |
#define wint_t int | |
#define __fastcall | |
#define __cdecl | |
#define __readfsqword(x) x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment