sys_info: fix missing #includes

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2024-02-27 13:57:03 +01:00
parent e558c9f244
commit e0e1663c58

View File

@ -6,6 +6,7 @@
#pragma once
#include "compat.hpp"
#include "string.hpp"
#include "system.hpp"
#if defined(_WIN32)
#include "windows.h"
@ -14,6 +15,7 @@
#else
#include <sys/utsname.h>
#endif
#include <map>
#include <memory>
#if defined(__GNUC__)