1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-16 18:13:49 +01:00
RIOT/cpu/esp8266/include/syscalls.h
2025-09-12 11:50:26 +02:00

35 lines
468 B
C

/*
* SPDX-FileCopyrightText: 2019 Gunar Schorcht
* SPDX-License-Identifier: LGPL-2.1-only
*/
#pragma once
/**
* @ingroup cpu_esp8266
* @{
*
* @file
* @brief Implementation of required system calls
*
* @author Gunar Schorcht <gunar@schorcht.net>
*
* @}
*/
#include "syscalls_common.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifndef DOXYGEN
#define MALLOC_CAP_DEFAULT MALLOC_CAP_8BIT
#endif /* DOXYGEN */
#ifdef __cplusplus
}
#endif