Skip to content
Permalink
4d3a563f2e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
14 lines (9 sloc) 246 Bytes
#ifndef _ALLOCA_H
#include <stdlib/alloca.h>
#undef __alloca
/* Now define the internal interfaces. */
extern void *__alloca (size_t __size) __THROW;
#ifdef __GNUC__
# define __alloca(size) __builtin_alloca (size)
#endif /* GCC. */
#endif