blob: ba668fe25b2c77890adccdded2764013f7ae9ee2 [file] [log] [blame]
typedef struct {
int x;
} FILE;
extern void fputs (const char *, FILE *);
int mView;
void foo (FILE * out, int aIndent)
{
if (0 != mView) {
aIndent++;
aIndent--;
{
int __t = aIndent;
while (--__t >= 0)
fputs (" ", out);
}
} {
int __t = aIndent;
while (--__t >= 0)
fputs (" ", out);
}
}