20 lines
338 B
C
20 lines
338 B
C
/*
|
|
* Copyright (c) 2016, Xilinx Inc. and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*
|
|
* @file generic/time.c
|
|
* @brief Generic libmetal time handling.
|
|
*/
|
|
|
|
#include <metal/time.h>
|
|
|
|
unsigned long long metal_get_timestamp(void)
|
|
{
|
|
/* TODO: Implement timestamp for generic system */
|
|
return 0;
|
|
}
|
|
|