1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Fix build on alpha: remove extraneous ')' parentheses in patch

This commit is contained in:
Mario Sergio Fujikawa Ferreira 2003-05-14 01:51:52 +00:00
parent 56799712cd
commit d88a05ddb8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=80946

View File

@ -17,7 +17,7 @@
+typedef struct { struct timespec t; } timing;
+#define timing_now(x) ((void) clock_gettime(CLOCK_REALTIME, &((x)->t)))
+/* in seconds */
+#define timing_diff(x,y) (((x)->t.tv_sec - (double) (y)->t.tv_sec) + (4294967296.0*((x)->t.tv_nsec - (double) (y)->t.tv_nsec)))/1e9)
+#define timing_diff(x,y) (((x)->t.tv_sec - (double) (y)->t.tv_sec) + (4294967296.0*((x)->t.tv_nsec - (double) (y)->t.tv_nsec))/1e9)
+
+#else