107 case 'h': |
107 case 'h': |
108 printhelp(); |
108 printhelp(); |
109 return EXIT_SUCCESS; |
109 return EXIT_SUCCESS; |
110 case 'v': |
110 case 'v': |
111 case 'V': |
111 case 'V': |
112 #ifdef VERSION_DEVELOP |
112 #if VERSION_DEVELOP > 0 |
113 printf("%d.%d (unstable)\n", VERSION_MAJOR, VERSION_MINOR); |
113 printf("%d.%d (unstable)\n", VERSION_MAJOR, VERSION_MINOR); |
114 #else |
114 #else |
115 printf("%d.%d\n", VERSION_MAJOR, VERSION_MINOR); |
115 printf("%d.%d\n", VERSION_MAJOR, VERSION_MINOR); |
116 #endif |
116 #endif |
117 return EXIT_SUCCESS; |
117 return EXIT_SUCCESS; |