mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-10 16:42:59 +03:00
10 lines
117 B
C
10 lines
117 B
C
#ifndef _ALLOCA_H
|
|
#define _ALLOCA_H
|
|
|
|
#define __NEED_size_t
|
|
#include <bits/alltypes.h>
|
|
|
|
void *alloca(size_t);
|
|
|
|
#endif
|