From 9d26bfb436bf702db44cff4be9dc0c106bc66d7a Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Fri, 28 Apr 2000 00:39:11 +0000 Subject: [PATCH] grrrrrr ... order wrong in typedef --- lib/isc/unix/include/isc/offset.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/isc/unix/include/isc/offset.h b/lib/isc/unix/include/isc/offset.h index bd16665548..c675f8d52e 100644 --- a/lib/isc/unix/include/isc/offset.h +++ b/lib/isc/unix/include/isc/offset.h @@ -15,7 +15,7 @@ * SOFTWARE. */ -/* $Id: offset.h,v 1.1 2000/04/28 00:36:56 tale Exp $ */ +/* $Id: offset.h,v 1.2 2000/04/28 00:39:11 tale Exp $ */ #ifndef ISC_OFFSET_T #define ISC_OFFSET_T 1 @@ -26,6 +26,6 @@ #include -typedef isc_offset_t off_t; +typedef off_t isc_offset_t; #endif /* ISC_OFFSET_T */