summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Vincent <jesse@bestpractical.com>2009-08-01 22:03:24 +0100
committerDavid Mitchell <davem@iabyn.com>2009-08-03 23:16:06 +0100
commitc8a55a82eb3d731f32906f9085394a38a2d7e662 (patch)
treed4ed1f40b19b84f0e0a5bd044702e2a837a52f0f
parentc27bbe5e30c97a3299478f624a59adaf916e1807 (diff)
downloadperl-c8a55a82eb3d731f32906f9085394a38a2d7e662.tar.gz
Y2038 doc pointers in the little helper C tools
(cherry picked from commit 233e9d1c28e4fd18c437c5ea9822d611b7feb777)
-rw-r--r--Porting/timecheck.c4
-rw-r--r--Porting/timecheck2.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/Porting/timecheck.c b/Porting/timecheck.c
index 07f5872756..cf0303aaf4 100644
--- a/Porting/timecheck.c
+++ b/Porting/timecheck.c
@@ -1,3 +1,7 @@
+/* A helper tool for perl's 2038 support.
+ * See Porting/README.y2038 for details
+ */
+
#include <sys/types.h>
#include <stdio.h>
#include <time.h>
diff --git a/Porting/timecheck2.c b/Porting/timecheck2.c
index a4445ef9f8..06d4a66cff 100644
--- a/Porting/timecheck2.c
+++ b/Porting/timecheck2.c
@@ -1,4 +1,6 @@
-/* A little program to test the limits of your system's time functions */
+/* A little program to test the limits of your system's time functions
+ * See Porting/README.y2038 for details
+ */
#include <time.h>
#include <stdio.h>