added stdint.h for MSVC builds

This commit is contained in:
Stanislau Tsitsianok 2020-04-03 22:54:37 +03:00
parent 521c431734
commit ccd716cf1d
No known key found for this signature in database
GPG Key ID: 349CB26B2ED6E0C0

View File

@ -35,6 +35,7 @@
#include "Imaging.h"
#include <math.h>
#include <stdint.h>
#define CEIL(v) (int) ceil(v)
#define FLOOR(v) ((v) >= 0.0 ? (int) (v) : (int) floor(v))