blob: e18fc4b1488581896ba8225614697c5346703fbd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* Items: clock_getres(
* Standardized-By: SuS
* Detected-by: gcc-4.4.3 + Linux
*/
#include <time.h>
main(int arg, char **argv)
{
struct timespec ts;
(void)clock_getres(0, &ts);
}
|