Changeset abed251569693eca81b6d91ae1149211c8507734

Show
Ignore:
Timestamp:
03/09/06 00:52:35 (3 years ago)
Author:
Eric Petit <titer@videolan.org>
git-committer:
Eric Petit <titer@videolan.org> 1141861955 +0000
git-parent:

[8eb76cd7e97bf343ffd3adddbdd0232bc9ae0f04]

git-author:
Eric Petit <titer@videolan.org> 1141861955 +0000
Message:

Force lldiv emulation on BeOS

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • include/vlc_common.h

    r1b73c74 rabed251  
    874874#endif 
    875875 
    876 #ifndef HAVE_LLDIV 
     876#if !defined(HAVE_LLDIV) || defined(SYS_BEOS) 
    877877    typedef struct { 
    878878        long long quot; /* Quotient. */ 
  • src/extras/libc.c

    r1b73c74 rabed251  
    347347 * lldiv: returns quotient and remainder 
    348348 *****************************************************************************/ 
    349 #if !defined( HAVE_LLDIV
     349#if !defined(HAVE_LLDIV) || defined(SYS_BEOS
    350350lldiv_t vlc_lldiv( long long numer, long long denom ) 
    351351{