1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-19 05:41:16 +00:00

Provide fallback definition for uint_fast64_t as well.

Fixes a compilation problem on glibc 2.0 systems.
taken from a patch by Mikulas Patocka, mikulas (at) artax karlin mff cuni cz


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20363 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-10-22 14:45:54 +00:00
parent 4892f9f47d
commit cd12819cf4

1
configure vendored
View File

@ -2841,6 +2841,7 @@ else
typedef signed char int_fast8_t;
typedef signed int int_fast16_t;
typedef signed int int_fast32_t;
typedef signed long long int int_fast64_t;
typedef unsigned char uint_fast8_t;
typedef unsigned int uint_fast16_t;
typedef unsigned int uint_fast32_t;