| 366 | |
| 367 | #ifndef HAVE_TIMES |
| 368 | static time_t times(struct tms* buffer) |
| 369 | { |
| 370 | /************************************** |
| 371 | * |
| 372 | * t i m e s |
| 373 | * |
| 374 | ************************************** |
| 375 | * |
| 376 | * Functional description |
| 377 | * Emulate the good old unix call "times". Only both with user time. |
| 378 | * |
| 379 | **************************************/ |
| 380 | |
| 381 | buffer->tms_utime = clock(); |
| 382 | return buffer->tms_utime; |
| 383 | } |
| 384 | #endif |