summaryrefslogtreecommitdiff
path: root/mm/include/libc/alloca.h
blob: 68c40475e1ddc019a53c49e4d4fd72ba2a59413b (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef LIBC_ALLOCA_H
#define LIBC_ALLOCA_H

#ifndef __linux__
void* alloca(u32);
#endif

#define alloca  __builtin_alloca

#endif