summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pch/static-3.c
blob: eae0ab078050caaccf77987542ea8e476d4fbb75 (plain)
1
2
3
4
5
6
7
8
#include "static-3.h"
int bar(int *a)
{
  int i, tot;
  for (i = tot = 0; i < 100; i++)
    tot += a[i];
  return tot;
}