mirror of
https://github.com/Zygo/bees.git
synced 2025-05-17 13:25:45 +02:00
12 lines
180 B
C++
12 lines
180 B
C++
#include "crucible/error.h"
|
|
#include "crucible/uname.h"
|
|
|
|
namespace crucible {
|
|
using namespace std;
|
|
|
|
Uname::Uname()
|
|
{
|
|
DIE_IF_NON_ZERO(uname(static_cast<utsname*>(this)));
|
|
}
|
|
}
|