repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update release readme after making 2.43.1 release
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-elf
/
pr2404a.c
blob
4b2b5a94106cf787d7efbfd95f5f21a596b94b8a
1
#include <time.h>
2
#include <sys/times.h>
3
4
int
5
bar
(
void
)
6
{
7
struct
tms buf
;
8
clock_t
ticks
=
times
(&
buf
);
9
return
ticks
==
0
&&
time
(
NULL
) ==
0
;
10
}