xref: /haiku/src/bin/system_time.cpp (revision 17889a8c70dbb3d59c1412f6431968753c767bab)
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 }
20