| OLD | NEW |
| 1 /**************************************************************************** | 1 /**************************************************************************** |
| 2 | 2 |
| 3 THIS SOFTWARE IS NOT COPYRIGHTED | 3 THIS SOFTWARE IS NOT COPYRIGHTED |
| 4 | 4 |
| 5 HP offers the following for use in the public domain. HP makes no | 5 HP offers the following for use in the public domain. HP makes no |
| 6 warranty with regard to the software or it's performance and the | 6 warranty with regard to the software or it's performance and the |
| 7 user accepts the software "AS IS" with all faults. | 7 user accepts the software "AS IS" with all faults. |
| 8 | 8 |
| 9 HP DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD | 9 HP DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD |
| 10 TO THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES | 10 TO THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
| (...skipping 932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 943 beginning of a program to sync up with a debugger and can be used | 943 beginning of a program to sync up with a debugger and can be used |
| 944 otherwise as a quick means to stop program execution and "break" into | 944 otherwise as a quick means to stop program execution and "break" into |
| 945 the debugger. */ | 945 the debugger. */ |
| 946 | 946 |
| 947 void | 947 void |
| 948 breakpoint (void) | 948 breakpoint (void) |
| 949 { | 949 { |
| 950 if (initialized) | 950 if (initialized) |
| 951 BREAKPOINT (); | 951 BREAKPOINT (); |
| 952 } | 952 } |
| OLD | NEW |