Changeset c15d6f5e7b45895bd3e34388ec3c5501ed78d126

Show
Ignore:
Timestamp:
12/06/03 17:56:27 (5 years ago)
Author:
Gildas Bazin <gbazin@videolan.org>
git-committer:
Gildas Bazin <gbazin@videolan.org> 1055433387 +0000
git-parent:

[08b246eacb1858c1b7d50aadeebd61ea7e6fc231]

git-author:
Gildas Bazin <gbazin@videolan.org> 1055433387 +0000
Message:

* modules/access_output/file.c: win32 compilation fix.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/access_output/file.c

    r173915c rc15d6f5  
    33 ***************************************************************************** 
    44 * Copyright (C) 2001, 2002 VideoLAN 
    5  * $Id: file.c,v 1.6 2003/06/11 21:41:56 gbazin Exp $ 
     5 * $Id: file.c,v 1.7 2003/06/12 15:56:27 gbazin Exp $ 
    66 * 
    77 * Authors: Laurent Aimar <fenrir@via.ecp.fr> 
     
    4141#elif defined( WIN32 ) && !defined( UNDER_CE ) 
    4242#   include <io.h> 
    43 #   ifndef S_IRGRP 
     43#endif 
     44 
     45/* For those platforms that don't use these */ 
     46#ifndef S_IRGRP 
    4447#   define S_IRGRP 0 
     48#endif 
     49#ifndef S_IROTH 
    4550#   define S_IROTH 0 
    46 #   endif 
    4751#endif 
    4852