| 116 | |
| 117 | |
| 118 | void timestamp_copy( timestamp * const target, timestamp const * const source ) |
| 119 | { |
| 120 | target->secs = source->secs; |
| 121 | target->nsecs = source->nsecs; |
| 122 | } |
| 123 | |
| 124 | |
| 125 | void timestamp_current( timestamp * const t ) |
no outgoing calls
no test coverage detected