diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-03-28 14:05:07 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-03-28 14:05:07 +0200 |
| commit | 07a65d4827a8d71d43c072f0279689e5abe9751f (patch) | |
| tree | 28632a5add4e192cddc724a515e7a1a940ab1767 /src/include | |
| parent | 35e35ec5db52c96e71f8ed207265941e8734d8a1 (diff) | |
| download | box64-07a65d4827a8d71d43c072f0279689e5abe9751f.tar.gz box64-07a65d4827a8d71d43c072f0279689e5abe9751f.zip | |
Added some obstack_XXX wrapped function (ported from box86)
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/myalign.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/myalign.h b/src/include/myalign.h index d627b25d..264c71eb 100755 --- a/src/include/myalign.h +++ b/src/include/myalign.h @@ -1,3 +1,5 @@ +#ifndef __MY_ALIGN__H_ +#define __MY_ALIGN__H_ #include <stdint.h> typedef struct x64_va_list_s { @@ -171,3 +173,5 @@ void UnalignSemidDs(void *dest, const void* source); void AlignSemidDs(void *dest, const void* source); uintptr_t getVArgs(x64emu_t* emu, int pos, uintptr_t* b, int N); + +#endif //__MY_ALIGN__H_ \ No newline at end of file |