Bump to version 1.22.1
[platform/upstream/busybox.git] / selinux / load_policy.c
index add5c66..ce139db 100644 (file)
@@ -1,15 +1,21 @@
 /*
  * load_policy
  * Author: Yuichi Nakamura <ynakam@hitachisoft.jp>
+ *
+ * Licensed under GPLv2, see file LICENSE in this source tree.
  */
+
+//usage:#define load_policy_trivial_usage NOUSAGE_STR
+//usage:#define load_policy_full_usage ""
+
 #include "libbb.h"
 
-int load_policy_main(int argc, char **argv);
-int load_policy_main(int argc, char **argv)
+int load_policy_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
+int load_policy_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
 {
        int rc;
 
-       if (argc != 1) {
+       if (argv[1]) {
                bb_show_usage();
        }