Declaration for COBOL calling C

COBOL program C function
01 X PIC S9(9) BINARY.
CALL "CENTRY" USING BY VALUE X.

 
void CENTRY(int x) {
}