From eec0dc5eceef3459d5a28c556ea87ba675ed286e Mon Sep 17 00:00:00 2001 From: Marty Kraimer Date: Tue, 13 May 2003 15:53:07 +0000 Subject: [PATCH] same def of RECSUPFUN for both C and C++ --- src/dbStatic/recSup.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/dbStatic/recSup.h b/src/dbStatic/recSup.h index 86db3b1af..d8d77473a 100644 --- a/src/dbStatic/recSup.h +++ b/src/dbStatic/recSup.h @@ -18,11 +18,10 @@ #ifdef __cplusplus extern "C" { -typedef long (*RECSUPFUN) (void *); /* ptr to record support function*/ -#else -typedef long (*RECSUPFUN) (); /* ptr to record support function*/ #endif +typedef long (*RECSUPFUN) (); /* ptr to record support function*/ + typedef struct rset { /* record support entry table */ long number; /*number of support routines */ RECSUPFUN report; /*print report */