summaryrefslogtreecommitdiff
path: root/include/libc/alloca.h
blob: dabd6bcd5316dff9e5f1f9abcacb079d6ad68f78 (plain)
1
2
3
4
5
6
7
#ifndef LIBC_ALLOCA_H
#define LIBC_ALLOCA_H

void* alloca(size_t);
#define alloca(size) __builtin_alloca(size)

#endif