mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
15 lines
166 B
C++
15 lines
166 B
C++
|
#include "die_if.hpp"
|
||
|
#include <cstdlib>
|
||
|
|
||
|
namespace webfuse_test
|
||
|
{
|
||
|
|
||
|
void die_if(bool expression)
|
||
|
{
|
||
|
if (expression)
|
||
|
{
|
||
|
exit(EXIT_FAILURE);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|