1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-03-16 22:50:13 +03:00

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 */