| 105 | |
| 106 | |
| 107 | void timestamp_copy( timestamp * const target, timestamp const * const source ) |
| 108 | { |
| 109 | target->secs = source->secs; |
| 110 | target->nsecs = source->nsecs; |
| 111 | } |
| 112 | |
| 113 | |
| 114 | void timestamp_current( timestamp * const t ) |
no outgoing calls
no test coverage detected