2006-03-04 18:16:49 +00:00
|
|
|
/*
|
|
|
|
htop - htop.c
|
2011-05-26 16:32:50 +00:00
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2021-03-17 03:29:40 +00:00
|
|
|
(C) 2020-2021 htop dev team
|
2021-09-22 09:33:00 +00:00
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
2011-12-26 21:35:57 +00:00
|
|
|
|
2021-03-23 04:04:54 +00:00
|
|
|
#include "CommandLine.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
|
2020-10-06 20:22:58 +00:00
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
int main(int argc, char** argv) {
|
2021-03-23 04:04:54 +00:00
|
|
|
return CommandLine_run(PACKAGE, argc, argv);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|