10 lines
128 B
C++
10 lines
128 B
C++
|
#pragma once
|
||
|
|
||
|
#if defined(OS_LINUX)
|
||
|
|
||
|
namespace hex {
|
||
|
void executeCmd(const std::vector<std::string> &argsVector);
|
||
|
}
|
||
|
|
||
|
#endif
|