Rev 3 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: main.c 2 2024-09-05 18:31:51Z nishi $ */
#include <stdio.h>
#include <unistd.h>
#include "mk_service.h"
int main(int argc, char** argv){
if(getuid() != 0){
fprintf(stderr, "Run me as root.\n");
return 1;
}
mk_service_scan();
}