1.4K Star 7.6K Fork 1.3K

GVP方舟编译器/OpenArkCompiler

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
stdlib.h 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
weixin93 提交于 2023-06-29 22:03 +08:00 . update llvm15:set ENHANCED_CLANG PATH
/*
* Copyright (c) [2021] Huawei Technologies Co.,Ltd.All rights reserved.
*
* OpenArkCompiler is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
*
* http://license.coscl.org.cn/MulanPSL2
*
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR
* FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
#include_next <stdlib.h>
#ifndef __STDLIB_C_ENHANCED_H
// no stdlib header guard if (defined __need_malloc_and_calloc => !defined _STDLIB_H)
#ifdef _STDLIB_H
#define __STDLIB_C_ENHANCED_H
#ifdef C_ENHANCED
#include "c_enhanced.h"
BRCNTI(1)
SAFE void *malloc(size_t);
SAFE void *calloc(size_t n_elements, size_t element_size) BRCNT(n_elements * element_size);
BRCNTI(2)
SAFE void *realloc(void *, size_t);
#endif // C_ENHANCED
#endif // _STDLIB_H
#endif // __STDLIB_C_ENHANCED_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/openarkcompiler/OpenArkCompiler.git
git@gitee.com:openarkcompiler/OpenArkCompiler.git
openarkcompiler
OpenArkCompiler
OpenArkCompiler
master

搜索帮助