NetBSDProcessTable.h 489 B

123456789101112131415161718192021222324
  1. #ifndef HEADER_NetBSDProcessTable
  2. #define HEADER_NetBSDProcessTable
  3. /*
  4. htop - NetBSDProcessTable.h
  5. (C) 2014 Hisham H. Muhammad
  6. (C) 2015 Michael McConville
  7. (C) 2021 Santhosh Raju
  8. (C) 2021 htop dev team
  9. Released under the GNU GPLv2+, see the COPYING file
  10. in the source distribution for its full text.
  11. */
  12. #include <stdbool.h>
  13. #include <sys/types.h>
  14. #include "Hashtable.h"
  15. #include "ProcessTable.h"
  16. typedef struct NetBSDProcessTable_ {
  17. ProcessTable super;
  18. } NetBSDProcessTable;
  19. #endif