Affix

 view release on metacpan or  search on metacpan

infix/src/emit/elf/emit_elf.c  view on Meta::CPAN

/**
 * Copyright (c) 2025 Sanko Robinson
 *
 * This source code is dual-licensed under the Artistic License 2.0 or the MIT License.
 * You may choose to use the code under the terms of either license.
 *
 * SPDX-License-Identifier: (Artistic-2.0 OR MIT)
 */
/**
 * @file emit_elf.c
 * @brief ELF binary format support for emit system.
 */
#include "common/compat_c23.h"
#include "emit/emit.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

static c23_maybe_unused void elf_write_section_header(const char * name, uint64_t size, uint64_t offset) {
    (void)name;
    (void)size;
    (void)offset;
}



( run in 0.458 second using v1.01-cache-2.11-cpan-d01c6094234 )