Prevent empty translation units to satisfy ISO C compilers.

This commit is contained in:
Carlos Maddela 2016-12-09 15:43:58 +11:00 committed by rofl0r
parent 167780ce36
commit 8ddc8a6da3

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