usage of fileno() only on POSIX and Windows

This commit is contained in:
inikep
2016-05-25 12:41:41 +02:00
parent e75909ef93
commit 4f1acdd158
2 changed files with 4 additions and 3 deletions
-2
View File
@@ -262,8 +262,6 @@ static size_t FUZ_randomLength(U32* seed, U32 maxLog)
return FUZ_rLogLength(seed, logLength);
}
#define MIN(a,b) ( (a) < (b) ? (a) : (b) )
#define CHECK(cond, ...) if (cond) { DISPLAY("Error => "); DISPLAY(__VA_ARGS__); \
DISPLAY(" (seed %u, test nb %u) \n", seed, testNb); goto _output_error; }