| Amithash Prasad | e78634b | 2025-09-26 14:10:13 -0700 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */ |
| 2 | #include "compiler.h" | ||||
| 3 | #include "environ/time.h" | ||||
| 4 | |||||
| 5 | #include <time.h> | ||||
| 6 | |||||
| 7 | LIBPLDM_ABI_TESTING LIBPLDM_CC_WEAK int | ||||
| 8 | libpldm_clock_gettime(clockid_t clockid, struct timespec *ts) | ||||
| 9 | { | ||||
| 10 | return clock_gettime(clockid, ts); | ||||
| 11 | } | ||||