* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.gdbtk / simple.c
1 void
2 main(int argc, char * argv[])
3 {
4 int i;
5 char *a;
6 char *b = "abc";
7 long foo;
8
9 a = (char *) malloc (300);
10
11 for (i=0; i < 50; i++)
12 {
13 int j = i % 3;
14 int k = 3 - j;
15 strncpy (a[i], b[k], j);
16 foo = (long) j * k / i + 2 * k * k * k;
17 }
18 }
19
This page took 0.029403 seconds and 4 git commands to generate.