C++程序  |  13行  |  171 B

/*
 * alloca.h
 *
 * Just call the builtin alloca() function
 */

#ifndef _ALLOCA_H
#define _ALLOCA_H

#define alloca(size) __builtin_alloca(size)

#endif /* _ALLOCA_H */