forked from lix-project/lix
14 lines
119 B
C++
14 lines
119 B
C++
|
#pragma once
|
||
|
|
||
|
#if __linux__
|
||
|
|
||
|
#include "types.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
void destroyCgroup(const Path & cgroup);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|