summaryrefslogtreecommitdiff
path: root/other/burneye/reads/et_dyn/a.c
blob: bb8d7482daa36f3874f3bb3c3c63c120bd8fa4c7 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

static char msg[] = "hello world\n";

int main()
{
  printf("%s", msg);
  return 0;
}