瀏覽代碼

Add extern support for file-scope variables in testsupport.h

Andrea Shepard 8 年之前
父節點
當前提交
4e4a760491
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/common/testsupport.h

+ 2 - 0
src/common/testsupport.h

@@ -6,8 +6,10 @@
 
 #ifdef TOR_UNIT_TESTS
 #define STATIC
+#define EXTERN(type, name) extern type name;
 #else
 #define STATIC static
+#define EXTERN(type, name)
 #endif
 
 /** Quick and dirty macros to implement test mocking.