Files
Sprinter-SDCC/tests/sdbg/fixtures/main.c
T

13 lines
384 B
C

/* Репро карты строк и типов; global/static должны иметь разные адреса. */
#include "common.h"
int total;
const char *debug_looking_text = "Fmain$text$0_0$0 Lmain.fake";
static signed char counter;
unsigned char helper(unsigned char value);
int main(void)
{
counter = -7;
total = helper(transform(3));
return total + counter;
}