Prevent empty translation units to satisfy ISO C compilers.

pull/152/head
Carlos Maddela 2016-12-09 15:43:58 +11:00 committed by rofl0r
parent 167780ce36
commit 8ddc8a6da3
1 changed files with 6 additions and 0 deletions

View File

@ -22,4 +22,10 @@ void DUMP_PROXY_CHAIN(proxy_data *pchain, unsigned int count) {
}
}
#else
// Do not allow this translation unit to end up empty
// for non-DEBUG builds, to satisfy ISO C standards.
typedef int __appease_iso_compilers__;
#endif