mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-19 03:13:14 +00:00
22 lines
467 B
C
22 lines
467 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "private/elf_symbol.h"
|
|
|
|
/* Extern declarations from ELF symbol table */
|
|
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wbuiltin-declaration-mismatch"
|
|
#pragma GCC diagnostic pop
|
|
|
|
/* Available ELF symbols table: g_customer_elfsyms */
|
|
|
|
const struct esp_elfsym g_customer_elfsyms[] = {
|
|
ESP_ELFSYM_END
|
|
};
|