diff options
Diffstat (limited to 'libs/nanopb/tests/common/test_helpers.h')
-rw-r--r-- | libs/nanopb/tests/common/test_helpers.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libs/nanopb/tests/common/test_helpers.h b/libs/nanopb/tests/common/test_helpers.h new file mode 100644 index 0000000..f77760a --- /dev/null +++ b/libs/nanopb/tests/common/test_helpers.h @@ -0,0 +1,17 @@ +/* Compatibility helpers for the test programs. */ + +#ifndef _TEST_HELPERS_H_ +#define _TEST_HELPERS_H_ + +#ifdef _WIN32 +#include <io.h> +#include <fcntl.h> +#define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY) + +#else +#define SET_BINARY_MODE(file) + +#endif + + +#endif |