summaryrefslogtreecommitdiff
path: root/testsuite/tests/rts/T7040_ghci_c.c
blob: ee6ddd532863100c030198eb2f1ee2659b88eae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include "T7040_c.h"

int x = 0;

void printx() {
  printf("x: %d\n", x);
  x = 1;
  printf("x: %d\n", x);
}