| 32 | #define UTILITY_MINOR_VERSION 0 |
| 33 | |
| 34 | void |
| 35 | Version ( |
| 36 | void |
| 37 | ) |
| 38 | /*++ |
| 39 | |
| 40 | Routine Description: |
| 41 | |
| 42 | Displays the standard utility information to SDTOUT |
| 43 | |
| 44 | Arguments: |
| 45 | |
| 46 | None |
| 47 | |
| 48 | Returns: |
| 49 | |
| 50 | None |
| 51 | |
| 52 | --*/ |
| 53 | { |
| 54 | printf ("%s Version %d.%d Build %s\n", UTILITY_NAME, UTILITY_MAJOR_VERSION, UTILITY_MINOR_VERSION, __BUILD_VERSION); |
| 55 | } |
| 56 | |
| 57 | void |
| 58 | Usage ( |