sevki
c9e1dba412
setup CI/CD for kernel development - added CodeQL for code scanning - every pr is built as an image and is available for 30days on https://oklinux.dev - tagged and released on github for now Signed-off-by: sevki <s@sevki.io>
12 lines
190 B
C
12 lines
190 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __VDSO_TIME_H
|
|
#define __VDSO_TIME_H
|
|
|
|
#include <uapi/linux/types.h>
|
|
|
|
struct timens_offset {
|
|
s64 sec;
|
|
u64 nsec;
|
|
};
|
|
|
|
#endif /* __VDSO_TIME_H */
|