blob: f70022b1eb37b7cd7b74d20a5184d143b35c8493 [file] [log] [blame]
Amithash Prasade78634b2025-09-26 14:10:13 -07001/* 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
7LIBPLDM_ABI_TESTING LIBPLDM_CC_WEAK int
8libpldm_clock_gettime(clockid_t clockid, struct timespec *ts)
9{
10 return clock_gettime(clockid, ts);
11}