mirror of
https://github.com/reactos/CMake.git
synced 2024-12-01 07:20:22 +00:00
13 lines
312 B
C
13 lines
312 B
C
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||
|
#pragma once
|
||
|
#include "cmConfigure.h" // IWYU pragma: keep
|
||
|
|
||
|
#include <cstddef>
|
||
|
#include <set>
|
||
|
|
||
|
namespace cmAffinity {
|
||
|
|
||
|
std::set<size_t> GetProcessorsAvailable();
|
||
|
}
|