Tweaks to create a single-file decoder

The CHECK_F macros differ slightly (but eventually do the same thing). Older GCC needs to fallback on the old-style pragma optimisation flags.
This commit is contained in:
Carl Woffenden
2019-08-21 17:49:17 +02:00
parent 69c875a0cc
commit 901ea61f83
3 changed files with 11 additions and 2 deletions
+2
View File
@@ -61,7 +61,9 @@
* Error Management
****************************************************************/
#define HUF_isError ERR_isError
#ifndef CHECK_F
#define CHECK_F(f) { size_t const err_ = (f); if (HUF_isError(err_)) return err_; }
#endif
/* **************************************************************