]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/testsuite/ld-elf/pr2404a.c
Remove bfd_stdint.h
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-elf / pr2404a.c
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 }