mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-24 23:22:04 +03:00
3ed8c9f2df
patch by Arvid Picciani (aep)
18 lines
186 B
C
18 lines
186 B
C
#ifndef _ALLOCA_H
|
|
#define _ALLOCA_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define __NEED_size_t
|
|
#include <bits/alltypes.h>
|
|
|
|
void *alloca(size_t);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|