Introduce a place to share implementations of libc functions that are needed by different libc versions. Place time() in this common location so it can be shared when building for either minimal libc or armclang libc. Signed-off-by: Kumar Gala <kumar.gala@intel.com>
8 lines
150 B
Plaintext
8 lines
150 B
Plaintext
# Copyright (c) 2023 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config COMMON_LIBC_TIME
|
|
bool
|
|
help
|
|
common implementation of time().
|