infix
A JIT-Powered FFI Library for C
Loading...
Searching...
No Matches
emit_pe.c
Go to the documentation of this file.
1
13#include "common/compat_c23.h"
14#include "emit/emit.h"
15#include <stdio.h>
16#include <stdlib.h>
17#include <string.h>
18
19static c23_maybe_unused void write_optional_header(emit_context_t * ctx, uint64_t code_size) {
20 (void)ctx;
21 (void)code_size;
22}
Provides forward compatibility macros for C23 features.
#define c23_maybe_unused
A compatibility macro for the C23 [[maybe_unused]] attribute.
Definition compat_c23.h:156
Public API for the emit JIT code generation system.
static c23_maybe_unused void write_optional_header(emit_context_t *ctx, uint64_t code_size)
Definition emit_pe.c:19
Definition emit_internals.h:50