Treat copysignl like the other copysign functions.
[oota-llvm.git] / test / FrontendC / 2007-01-06-KNR-Proto.c
1 // RUN: %llvmgcc -S -o - -emit-llvm %s
2 // PR1083
3
4 int svc_register (void (*dispatch) (int));
5
6 int svc_register (dispatch)
7      void (*dispatch) ();
8 {
9 }
10