| 964 | }; |
| 965 | |
| 966 | int main(int argc, char *argv[]) |
| 967 | { |
| 968 | setup_locale(); |
| 969 | |
| 970 | /* We deal in UTC; mktime() uses local time */ |
| 971 | setenv("TZ", "", 1); |
| 972 | plugin_main(argv, init, PLUGIN_RESTARTABLE, true, NULL, commands, |
| 973 | ARRAY_SIZE(commands), NULL, 0, hooks, ARRAY_SIZE(hooks), |
| 974 | NULL, 0, NULL); |
| 975 | } |
nothing calls this directly
no test coverage detected