1 /* { dg-do compile } */
2
3 extern int ReadBlobByte (void);
4
5 void ReadRLEImage (unsigned char *p)
6 {
7 unsigned char background_color[4] = { 0, 1, 2, 3 };
8 long j;
9
10 unsigned long number_planes = ReadBlobByte();
11
12 for (j = 0; j < (long) number_planes; j++)
13 *p++ = background_color[j];
14 }
15