Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
bilam committed Nov 6, 2024
1 parent e978735 commit faebc25
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion jsrc/x15.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,11 @@ return (void*)((uintptr_t)((dvc)+((align)-1)) & ~((align)-1));
}
*/

#define SY_UNIX64 (SY_64 && (defined(__aarch64__) || SY_LINUX || SY_MAC || SY_FREEBSD || SY_OPENBSD))
#if defined(__aarch64__)
#define SY_UNIX64 1
#else
#define SY_UNIX64 (SY_64 && (SY_LINUX || SY_MAC || SY_FREEBSD || SY_OPENBSD))
#endif

#if SY_WINCE
#define HINSTANCE_ERROR 0
Expand Down

0 comments on commit faebc25

Please sign in to comment.