Sign in
android
/
platform
/
external
/
compiler-rt
/
fee4ccc59ae704020a3e0966e96b1eb80e54a828
/
.
/
test
/
sanitizer_common
/
TestCases
/
Linux
/
clock_gettime.c
blob: ec1386ef2414ccab6d9eab453e0ecff48e364cd5 [
file
] [
log
] [
blame
]
// RUN: %clang %s -Wl,-as-needed -o %t && %run %t
// Regression test for PR15823
// (http://llvm.org/bugs/show_bug.cgi?id=15823).
#include
<stdio.h>
#include
<time.h>
int
main
()
{
struct
timespec ts
;
clock_gettime
(
CLOCK_REALTIME
,
&
ts
);
return
0
;
}