Changeset abed251569693eca81b6d91ae1149211c8507734
- 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
| r1b73c74 |
rabed251 |
|
| 874 | 874 | #endif |
|---|
| 875 | 875 | |
|---|
| 876 | | #ifndef HAVE_LLDIV |
|---|
| | 876 | #if !defined(HAVE_LLDIV) || defined(SYS_BEOS) |
|---|
| 877 | 877 | typedef struct { |
|---|
| 878 | 878 | long long quot; /* Quotient. */ |
|---|
| r1b73c74 |
rabed251 |
|
| 347 | 347 | * lldiv: returns quotient and remainder |
|---|
| 348 | 348 | *****************************************************************************/ |
|---|
| 349 | | #if !defined( HAVE_LLDIV ) |
|---|
| | 349 | #if !defined(HAVE_LLDIV) || defined(SYS_BEOS) |
|---|
| 350 | 350 | lldiv_t vlc_lldiv( long long numer, long long denom ) |
|---|
| 351 | 351 | { |
|---|