symm/stub.h.in: Add include guard around header.
authorMark Wooding <mdw@distorted.org.uk>
Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 22 Apr 2017 19:44:05 +0000 (20:44 +0100)
Most Catacomb public headers do this, so the stubs ought to too.

symm/stub.h.in

index 7253194..4fb42ba 100644 (file)
@@ -10,6 +10,8 @@
 #ifndef CATACOMB_@{name:u}_H
 #define CATACOMB_@{name:u}_H
 
-#include "@base.h"
+#ifndef CATACOMB_@{base:u}_H
+#  include "@base.h"
+#endif
 
 #endif