| 1294 | } |
| 1295 | |
| 1296 | static |
| 1297 | void |
| 1298 | Version ( |
| 1299 | VOID |
| 1300 | ) |
| 1301 | /*++ |
| 1302 | |
| 1303 | Routine Description: |
| 1304 | |
| 1305 | Print version information for this utility. |
| 1306 | |
| 1307 | Arguments: |
| 1308 | |
| 1309 | None. |
| 1310 | |
| 1311 | Returns: |
| 1312 | |
| 1313 | Nothing. |
| 1314 | --*/ |
| 1315 | { |
| 1316 | fprintf (stdout, "%s Version %d.%d %s \n", UTILITY_NAME, UTILITY_MAJOR_VERSION, UTILITY_MINOR_VERSION, __BUILD_VERSION); |
| 1317 | } |
| 1318 | |
| 1319 | static |
| 1320 | void |
no test coverage detected