new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / shared / tests / prime_test.c
old mode 100755 (executable)
new mode 100644 (file)
index 8ee3757..334a7ed
@@ -1,21 +1,19 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
+
 #include "math_op.h"
 
 
 int main(int argc, char **argv)
 {
-    if(!argv[1])
-    {
+    if (!argv[1]) {
         printf("%s <int>\n", argv[0]);
         exit(1);
     }
 
     printf("Value: %d\n", os_getprime(atoi(argv[1])));
 
-    return(0);
+    return (0);
 }
 
-
-/* EOF */