summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2007-01-06-KNR-Proto.c
blob: d56a786fce538d9c753141162322492c6694d69d (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -emit-llvm -o - %s
// PR1083

int svc_register (void (*dispatch) (int));

int svc_register (dispatch)
     void (*dispatch) ();
{
}