htop/htop.c

17 lines
333 B
C
Raw Permalink Normal View History

2006-03-04 18:16:49 +00:00
/*
htop - htop.c
(C) 2004-2011 Hisham H. Muhammad
(C) 2020-2021 htop dev team
Released under the GNU GPLv2+, see the COPYING file
2006-03-04 18:16:49 +00:00
in the source distribution for its full text.
*/
#include "config.h" // IWYU pragma: keep
2011-12-26 21:35:57 +00:00
#include "CommandLine.h"
int main(int argc, char** argv) {
return CommandLine_run(PACKAGE, argc, argv);
2006-03-04 18:16:49 +00:00
}