mirror of
https://gitlab.com/procps-ng/procps.git
synced 2024-11-28 04:24:59 +08:00
10 lines
220 B
C
10 lines
220 B
C
#include <string.h>
|
|
#include "proc/whattime.h"
|
|
#include "proc/version.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
if(argc == 1) print_uptime();
|
|
if((argc == 2) && (!strcmp(argv[1], "-V"))) display_version();
|
|
return 0;
|
|
}
|