~npalix/coccinelle/upstream

« back to all changes in this revision

Viewing changes to tests/md2.c

  • Committer: Julia Lawall
  • Date: 2018-12-15 13:58:13 UTC
  • mfrom: (4708.1.16)
  • Revision ID: git-v1:26f85f9fb10d6d841fcb3a6b77bef6d4b925729a
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/coccinelle/coccinelle

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
int main() {
 
2
        int a;
 
3
        static int b;
 
4
        int a,b,c;
 
5
        static int a,b,c;
 
6
 
 
7
        char a;
 
8
        static char b;
 
9
        char a,b,c;
 
10
        static char a,b,c;
 
11
}