You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-mathematics/euler/files/euler-glibc-2.4-gentoo.patch

14 lines
349 B

# patch to fix missing CLK_TCK in glibc 2.4
--- src/main.c. 2006-04-04 15:05:34.000000000 +0200
+++ src/main.c 2006-04-04 15:09:20.000000000 +0200
@@ -439,7 +439,7 @@
gettimer(TIMEOFDAY,&t);
return (t.tv_sec+t.tv_nsec/1000000000.0);
#else
- return ((double)(times(NULL)))/CLK_TCK;
+ return ((double)(times(NULL)))/CLOCKS_PER_SEC;
#endif
}