mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 07:41:50 -04:00
Ensure that there is only one variable definition per each object, as the C (and C++) standards mandated for years and compilers started to enforce as of recently (Clang 11, GCC 10).
11 lines
298 B
C
11 lines
298 B
C
--- gschem/include/globals.h.orig 2013-08-18 17:02:48 UTC
|
|
+++ gschem/include/globals.h
|
|
@@ -27,7 +27,7 @@
|
|
extern GList *global_window_list;
|
|
|
|
/* Manager for recently used files */
|
|
-GtkRecentManager *recent_manager;
|
|
+extern GtkRecentManager *recent_manager;
|
|
|
|
/* colors */
|
|
extern GdkColor white;
|