tools/nolibc/time: create time.h with time()
authorWilly Tarreau <w@1wt.eu>
Mon, 7 Feb 2022 16:23:52 +0000 (17:23 +0100)
committerPaul E. McKenney <paulmck@kernel.org>
Thu, 21 Apr 2022 00:05:45 +0000 (17:05 -0700)
commitcec1505321020287c3acc5a63dd75859ebf5ad0d
treeae893fae7d9acf05c6510a8a272d6539be32d29d
parent99cb50ab94b2aa11c756c4ba14ef09197a7ebe7b
tools/nolibc/time: create time.h with time()

The time() syscall is used by a few simple applications, and is trivial
to implement based on gettimeofday() that we already have. Let's create
the file to ease porting and provide the function. It never returns any
error, though it may segfault in case of invalid pointer, like other
implementations relying on gettimeofday().

Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
tools/include/nolibc/nolibc.h
tools/include/nolibc/time.h [new file with mode: 0644]