From 8af60f3dcebdcb5d7b7f80924269698b9e26621e Mon Sep 17 00:00:00 2001 From: rocky Date: Wed, 16 Jul 2008 00:28:54 +0000 Subject: [PATCH] Another small tweak - make sure macro is undefine'd first. --- include/cdio/iso9660.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/cdio/iso9660.h b/include/cdio/iso9660.h index 4c610151..ffad587a 100644 --- a/include/cdio/iso9660.h +++ b/include/cdio/iso9660.h @@ -1,5 +1,5 @@ /* - $Id: iso9660.h,v 1.101 2008/07/15 13:37:30 rocky Exp $ + $Id: iso9660.h,v 1.102 2008/07/16 00:28:54 rocky Exp $ Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Rocky Bernstein @@ -67,6 +67,9 @@ typedef char dchar_t; /*! See section 7.4.1 */ #include #include +#ifdef ISODCL +#undef ISODCL +#endif /* This part borrowed from the bsd386 isofs */ #define ISODCL(from, to) ((to) - (from) + 1)