| 55 | #define UTILITY_MINOR_VERSION 0 |
| 56 | |
| 57 | void |
| 58 | Version ( |
| 59 | void |
| 60 | ) |
| 61 | /*++ |
| 62 | |
| 63 | Routine Description: |
| 64 | |
| 65 | Displays the standard utility information to SDTOUT |
| 66 | |
| 67 | Arguments: |
| 68 | |
| 69 | None |
| 70 | |
| 71 | Returns: |
| 72 | |
| 73 | None |
| 74 | |
| 75 | --*/ |
| 76 | { |
| 77 | printf ("%s Version %d.%d Build %s\n", UTILITY_NAME, UTILITY_MAJOR_VERSION, UTILITY_MINOR_VERSION, __BUILD_VERSION); |
| 78 | } |
| 79 | |
| 80 | VOID |
| 81 | Usage ( |