diff --git a/include/logdig.h b/include/logdig.h
index 595a453045c691da8176ba974e9f6886122cf90c..5e16fe5f95ba39c8869fb22fc1f6f1f192969793 100644
--- a/include/logdig.h
+++ b/include/logdig.h
@@ -4,14 +4,6 @@
 #include "logdef.h"
 #include <utils/sysglobals.h>
 
-#ifdef LOGDIG_G
-# define vextern
-#else
-# define vextern extern
-#endif
-
-
-
 #define log_16_simtype  16
 
 
@@ -48,10 +40,10 @@ typedef struct log_16_action {
   void (*hook_plotled) (log_action_t *lact, short x, short y, log_16_value v);
 } log_16_action;
 
-vextern const log_16_viarr log_16_vi;
-vextern const log_16_ivarr log_16_iv;
-vextern const log_16_vbarr log_16_vb;
-vextern const log_16_bvarr log_16_bv;
+extern const log_16_viarr log_16_vi;
+extern const log_16_ivarr log_16_iv;
+extern const log_16_vbarr log_16_vb;
+extern const log_16_bvarr log_16_bv;
 
 #undef vextern
 
diff --git a/src/logdig.c b/src/logdig.c
index ef5a930487eafdb39fdd2015fb616ac0377e9623..268f5d99c3cac99ec71ea0eb76fbafbf0b5998a8 100644
--- a/src/logdig.c
+++ b/src/logdig.c
@@ -39,7 +39,6 @@ the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
 #include <utils/p2c.h>
 
 
-#define LOGDIG_G
 #include "logdig.h"
 
 
@@ -59,14 +58,5 @@ const log_16_bvarr log_16_bv = {
   log_zero, log_one
 };
 
-
-
-
 /* All the real stuff is in LOGSIM and LOGSIMA */
 
-
-
-
-
-
-