diff options
author | Michael Brown <mcb30@ipxe.org> | 2012-03-19 16:59:53 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2012-03-19 22:13:27 +0000 |
commit | 846bde90e6b1001480016fa46a957a9e726af68a (patch) | |
tree | cf3dfaaef4c90864c11c707482fde92f49b4abf7 /src/arch/x86_64 | |
parent | c130001bdfb2fa4c880b59f76340a91703ffcfc9 (diff) | |
download | ipxe-846bde90e6b1001480016fa46a957a9e726af68a.tar.gz |
[time] Define an API for getting the current time
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/x86_64')
-rw-r--r-- | src/arch/x86_64/include/bits/time.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/arch/x86_64/include/bits/time.h b/src/arch/x86_64/include/bits/time.h new file mode 100644 index 000000000..59b355359 --- /dev/null +++ b/src/arch/x86_64/include/bits/time.h @@ -0,0 +1,12 @@ +#ifndef _BITS_TIME_H +#define _BITS_TIME_H + +/** @file + * + * x86_64-specific time API implementations + * + */ + +FILE_LICENCE ( GPL2_OR_LATER ); + +#endif /* _BITS_TIME_H */ |