diff options
Diffstat (limited to 'src/input/libdvdnav/remap.c')
-rw-r--r-- | src/input/libdvdnav/remap.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/input/libdvdnav/remap.c b/src/input/libdvdnav/remap.c index 8fffc6e29..86cf3a4ad 100644 --- a/src/input/libdvdnav/remap.c +++ b/src/input/libdvdnav/remap.c @@ -15,21 +15,24 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: remap.c,v 1.4 2003/08/25 21:51:40 f1rmb Exp $ + * $Id: remap.c,v 1.5 2006/09/17 13:01:08 valtri Exp $ */ #include <stdlib.h> #include <string.h> #include <stdio.h> -#ifndef _MSC_VER +#ifdef HAVE_SYS_PARAM_H #include <sys/param.h> +#endif + +#ifdef HAVE_SYS_FCNTL_H #include <sys/fcntl.h> #else #ifndef MAXPATHLEN #define MAXPATHLEN 255 #endif -#endif /* _MSC_VER */ +#endif /* HAVE fcntl.h */ #include <assert.h> #include "remap.h" |