mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-01-25 16:40:31 +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 */
|
||
|
|