htop.c 356 B

123456789101112131415161718
  1. /*
  2. htop - htop.c
  3. (C) 2004-2011 Hisham H. Muhammad
  4. (C) 2020-2021 htop dev team
  5. Released under the GNU GPLv2+, see the COPYING file
  6. in the source distribution for its full text.
  7. */
  8. #include "config.h" // IWYU pragma: keep
  9. #include "CommandLine.h"
  10. const char* program = PACKAGE;
  11. int main(int argc, char** argv) {
  12. return CommandLine_run(argc, argv);
  13. }