mirror of
https://gitflic.ru/project/e2khome/lccrt.git
synced 2024-11-24 02:40:46 +01:00
23 lines
504 B
C
23 lines
504 B
C
/**
|
|
* Part of the Lccrt Project, under the Apache License v2.0
|
|
* See http://www.apache.org/licenses/LICENSE-2.0.txt for license information.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* lccrt_real.h - пользовательский интерфейс (динамической) компиляции.
|
|
*/
|
|
|
|
#ifndef LCCRT_REAL_H
|
|
#define LCCRT_REAL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
#include "internal/lccrt_irv.h"
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif /* LCCRT_REAL_H */
|