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