Use __attribute__((force_align_arg_pointer)) (#30)

This commit is contained in:
2023-01-23 10:36:14 -05:00
committed by GitHub
parent 9837ce0bf4
commit 6b6a462ea1
5 changed files with 47 additions and 11 deletions

View File

@@ -1,13 +1,13 @@
#include "common.h"
namespace lmgr {
int lp_checkout(int a, int b, const char* c, const char* d, int e, const char* f, int* out) {
int WIN_ENTRY lp_checkout(int a, int b, const char* c, const char* d, int e, const char* f, int* out) {
DEBUG_LOG("lp_checkout %d %d %s %s %d %s\n", a, b, c, d, e, f);
*out = 1234;
return 0;
}
int lp_checkin() {
int WIN_ENTRY lp_checkin() {
DEBUG_LOG("lp_checkin\n");
return 0;
}