ack/tests/plat/bugs/bug-164-faddrn_c.c

17 lines
170 B
C
Raw Normal View History

2019-02-14 22:19:11 +00:00
#include <stdio.h>
#include "test.h"
int doit(void)
{
char buf[128];
int i;
i++;
}
int main(int argc, char *argv[])
{
doit();
finished();
return 0;
}