summaryrefslogtreecommitdiff
path: root/sim/ucsim/stm8.src/test/xtest.c
blob: 95f7598113b9b54d1a4784f70e9bed69f91309f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

char buf[10];

void
main(void)
{
  sprintf(buf, "%x", 0x1234);
  for (;;);
}