]> git.sesse.net Git - vlc/commitdiff
* modules/access_output/file.c: win32 compilation fix.
authorGildas Bazin <gbazin@videolan.org>
Thu, 12 Jun 2003 15:56:27 +0000 (15:56 +0000)
committerGildas Bazin <gbazin@videolan.org>
Thu, 12 Jun 2003 15:56:27 +0000 (15:56 +0000)
modules/access_output/file.c

index d51b424fd4d1fd5b5b8aea8fe638c00463fc2984..65afa46438258c2bc9b6ff8a04dd6dffc1ef5a1d 100644 (file)
@@ -2,7 +2,7 @@
  * file.c
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: file.c,v 1.6 2003/06/11 21:41:56 gbazin Exp $
+ * $Id: file.c,v 1.7 2003/06/12 15:56:27 gbazin Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *          Eric Petit <titer@videolan.org>
 #   include <unistd.h>
 #elif defined( WIN32 ) && !defined( UNDER_CE )
 #   include <io.h>
-#   ifndef S_IRGRP
+#endif
+
+/* For those platforms that don't use these */
+#ifndef S_IRGRP
 #   define S_IRGRP 0
+#endif
+#ifndef S_IROTH
 #   define S_IROTH 0
-#   endif
 #endif
 
 /*****************************************************************************