aboutsummaryrefslogtreecommitdiff
path: root/tests/core/test_alloca.in
blob: bfad33248a7852793cda8f689e3e27d39e872204 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <stdlib.h>

int main() {
  char *pc;
  pc = (char *)alloca(5);
  printf("z:%d*%d*\n", pc > 0, (int)pc);
  return 0;
}