repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
docs/ikteam: Delete most files.
[haiku.git]
/
src
/
bin
/
system_time.cpp
blob
128df6b754d9e23215f01ffddf9a4a83b87e1ebe
1
/*
2
* Copyright 2015 Haiku, Inc. All rights reserved.
3
* Distributed under the terms of the MIT License.
4
*
5
* Authors:
6
* Michael Lotz, mmlr@mlotz.ch
7
*/
8
9
#include <OS.h>
10
11
#include <stdio.h>
12
13
14
int
15
main
(
int
argc
,
char
*
argv
[])
16
{
17
printf
(
"%"
B_PRIdBIGTIME
"
\n
"
,
system_time
());
18
return
0
;
19
}