From 186779c29b6bbd997ad7a840a263d661f0c72061 Mon Sep 17 00:00:00 2001 From: Larry Doolittle Date: Thu, 18 Nov 2010 09:10:00 -0800 Subject: [PATCH] fix boring C lint in header With warnings turned sufficiently high in gcc, I get: .../vpi_user.h:568: warning: function declaration isn't a prototype when building VPI modules. Patch is trivial. --- vpi_user.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpi_user.h b/vpi_user.h index abe25f8db..e365c029d 100644 --- a/vpi_user.h +++ b/vpi_user.h @@ -577,7 +577,7 @@ extern PLI_INT32 vpi_chk_error(p_vpi_error_info info); /* This is the table of startup routines included in each module. */ -extern DLLEXPORT void (*vlog_startup_routines[])(); +extern DLLEXPORT void (*vlog_startup_routines[])(void); /*