aboutsummaryrefslogtreecommitdiff
path: root/graphics/mesagl/files/patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/mesagl/files/patch-aa')
-rw-r--r--graphics/mesagl/files/patch-aa29
1 files changed, 0 insertions, 29 deletions
diff --git a/graphics/mesagl/files/patch-aa b/graphics/mesagl/files/patch-aa
deleted file mode 100644
index 5815a70715b7..000000000000
--- a/graphics/mesagl/files/patch-aa
+++ /dev/null
@@ -1,29 +0,0 @@
-*** samples/speed.c.0 Fri Mar 3 16:38:42 1995
---- samples/speed.c Sun Mar 5 18:59:23 1995
-***************
-*** 35,40 ****
---- 35,44 ----
- #include <sys/param.h>
- #endif
-
-+ #ifdef __STDC__
-+ #include <time.h>
-+ #endif
-+
-
- #define GAP 10
- #define ROWS 1
-***************
-*** 122,128 ****
---- 126,136 ----
- clock_t clk;
-
- clk = times(&tm);
-+ #ifdef __STDC__
-+ return (double)clk / (double)CLOCKS_PER_SEC;
-+ #else
- return (double)clk / (double)HZ;
-+ #endif
- #else
- return 0;
- #endif