blob: 4ec760f17cdd49b195f1ae0cdde75d43c35ce451 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef HEADER_UnsupportedMachine
#define HEADER_UnsupportedMachine
/*
htop - UnsupportedMachine.h
(C) 2014 Hisham H. Muhammad
Released under the GNU GPLv2+, see the COPYING file
in the source distribution for its full text.
*/
#include "Machine.h"
typedef struct UnsupportedMachine_ {
Machine super;
} UnsupportedMachine;
#endif
|