Returns the processor time consumed by the program
| 10 | |
| 11 | // Returns the processor time consumed by the program |
| 12 | clock_t clock() { |
| 13 | return cputime(); |
| 14 | } |
| 15 | |
| 16 | // Returns the current calendar time |
| 17 | // Assume that the machine booted at the Unix epoch |