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

#include "stddef.h"

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

#endif