1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Fix implicit declarations
Author: أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>
Bug-Debian: http://bugs.debian.org/1078009
Bug: https://sourceforge.net/p/covered/patches/6/
Forwarded: https://sourceforge.net/p/covered/patches/6/attachment/fix-implicit-declarations.patch
Index: covered/src/vpi.c
===================================================================
--- covered.orig/src/vpi.c 2024-12-06 18:21:12.697047785 +0100
+++ covered/src/vpi.c 2024-12-06 18:26:07.761195322 +0100
@@ -40,6 +40,8 @@
#include "symtable.h"
#include "sys_tasks.h"
#include "util.h"
+#include "sim.h"
+#include "scope.h"
struct sym_value_s;
|