DragonFlyBSDProcessTable.h 449 B

123456789101112131415161718192021
  1. #ifndef HEADER_DragonFlyBSDProcessTable
  2. #define HEADER_DragonFlyBSDProcessTable
  3. /*
  4. htop - DragonFlyBSDProcessTable.h
  5. (C) 2014 Hisham H. Muhammad
  6. (C) 2017 Diederik de Groot
  7. Released under the GNU GPLv2+, see the COPYING file
  8. in the source distribution for its full text.
  9. */
  10. #include <stdbool.h>
  11. #include <sys/param.h>
  12. #include "ProcessTable.h"
  13. typedef struct DragonFlyBSDProcessTable_ {
  14. ProcessTable super;
  15. } DragonFlyBSDProcessTable;
  16. #endif