Fix undefined 'uint' for macOS/WIN32

This commit is contained in:
Campbell Barton 2022-09-26 10:42:47 +10:00
parent 8a68f4f808
commit 5b320e5a24

@ -105,6 +105,9 @@ All instructions on how to use this code are in the accompanying header file.
# define ALLOC(_struct) ((_struct *)malloc(sizeof(_struct)))
#endif
/* Not defined on all platforms (macOS & WIN32). */
typedef unsigned int uint;
// internal definitions
typedef const double *ArHosekSkyModel_Dataset;