summaryrefslogtreecommitdiff
path: root/bin/pax/pax.h
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pax/pax.h')
-rw-r--r--bin/pax/pax.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/pax/pax.h b/bin/pax/pax.h
index b2c15a1e7f6..65d445a74db 100644
--- a/bin/pax/pax.h
+++ b/bin/pax/pax.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pax.h,v 1.28 2015/11/17 19:01:34 mmcc Exp $ */
+/* $OpenBSD: pax.h,v 1.29 2017/09/12 17:11:11 otto Exp $ */
/* $NetBSD: pax.h,v 1.3 1995/03/21 09:07:41 cgd Exp $ */
/*-
@@ -258,3 +258,5 @@ typedef struct oplist {
#define OCT 8
#define _PAX_ 1
#define _TFILE_BASE "paxXXXXXXXXXX"
+#define MAX_TIME_T (sizeof(time_t) == sizeof(long long) ? \
+ LLONG_MAX : INT_MAX)