| 68 | #define UTILITY_MINOR_VERSION 2 |
| 69 | |
| 70 | void |
| 71 | Version ( |
| 72 | void |
| 73 | ) |
| 74 | /*++ |
| 75 | |
| 76 | Routine Description: |
| 77 | |
| 78 | Displays the standard utility information to SDTOUT |
| 79 | |
| 80 | Arguments: |
| 81 | |
| 82 | None |
| 83 | |
| 84 | Returns: |
| 85 | |
| 86 | None |
| 87 | |
| 88 | --*/ |
| 89 | { |
| 90 | printf ("%s Version %d.%d %s\n", UTILITY_NAME, UTILITY_MAJOR_VERSION, UTILITY_MINOR_VERSION, __BUILD_VERSION); |
| 91 | } |
| 92 | |
| 93 | VOID |
| 94 | Usage ( |