mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-17 00:24:35 -04:00
Make compile with MS-VC6
This commit is contained in:
parent
7ae2e68396
commit
2cf489eac2
3 changed files with 7 additions and 3 deletions
|
@ -45,7 +45,11 @@
|
|||
#include <assert.h>
|
||||
#include <math.h>
|
||||
#ifdef _MSC_VER
|
||||
#include <malloc.h>
|
||||
#include <malloc.h>
|
||||
/* ceilf (C99) not before MSVC++2013 (C++ 12.0) */
|
||||
#if _MSC_VER < 1800
|
||||
#define ceilf ceil
|
||||
#endif
|
||||
#endif
|
||||
#include "reedsol.h"
|
||||
#include "common.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue