mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-28 06:35:34 +07:00
14 lines
172 B
C
14 lines
172 B
C
/*
|
|
* alloca.h
|
|
*
|
|
* Just call the builtin alloca() function
|
|
*/
|
|
|
|
#ifndef _ALLOCA_H
|
|
#define _ALLOCA_H
|
|
|
|
#define alloca(size) __builtin_alloca(size)
|
|
|
|
#endif /* _ALLOCA_H */
|
|
|