Fix compilation error on Linux

src/framework/tarray.h:386:46: error: ‘intptr_t’ was not declared in this scope
This commit is contained in:
alexey.lysiuk 2022-07-25 10:52:16 +03:00
parent c3ab08c4af
commit d3220278cc

View file

@ -35,6 +35,7 @@
#pragma once
#include <stdlib.h>
#include <stdint.h>
#include <assert.h>
#include <string.h>
#ifndef __APPLE__