UnsupportedMachine.h 337 B

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