mirror of
https://github.com/Zygo/bees.git
synced 2025-05-17 21:35:45 +02:00
15 lines
179 B
C++
15 lines
179 B
C++
#ifndef CRUCIBLE_UNAME_H
|
|
#define CRUCIBLE_UNAME_H
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
namespace crucible {
|
|
using namespace std;
|
|
|
|
struct Uname : public utsname {
|
|
Uname();
|
|
};
|
|
}
|
|
|
|
#endif
|