Add a check for alloca() (moved from SPICE/common)
This commit is contained in:
parent
87ba839cdd
commit
6dd6537407
|
@ -0,0 +1,7 @@
|
|||
#include <alloca.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
void *result = alloca(20);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue