Files
phs_v1.0.1.0/third_party/musl/ndk_musl_include/alloca.h

18 lines
196 B
C
Raw Normal View History

2024-09-27 19:21:56 +08:00
#ifndef _ALLOCA_H
#define _ALLOCA_H
#ifdef __cplusplus
extern "C" {
#endif
#define __NEED_size_t
#include <bits/alltypes.h>
#define alloca __builtin_alloca
#ifdef __cplusplus
}
#endif
#endif