Changeset 594783c9c6add546352dbf861d762bd0077a0972

Show
Ignore:
Timestamp:
05/01/08 16:50:16 (3 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1209653416 +0300
git-parent:

[4e9a6195ffc96bc7056b5fd771b526b56a6579e7]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1209653416 +0300
Message:

U?I64C: use U?INT64_C from <stdint.h>

Files:

Legend:

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

    r4e9a619 r594783c  
    883883 
    884884/* 64 bits integer constant suffix */ 
    885 #if defined( __MINGW32__ ) || (!defined(WIN32) && !defined(UNDER_CE)) 
    886 #   if defined(__WORDSIZE) && __WORDSIZE == 64 
    887 #       define I64C(x)         x##L 
    888 #       define UI64C(x)        x##UL 
    889 #   else 
    890 #       define I64C(x)         x##LL 
    891 #       define UI64C(x)        x##ULL 
    892 #   endif 
    893 #else 
    894 #   define I64C(x)         x##i64 
    895 #   define UI64C(x)        x##ui64 
    896 #endif /* defined(WIN32)||defined(UNDER_CE) */ 
     885#define I64C(x)  INT64_C(x) 
     886#define UI64C(x) UINT64_C(x) 
    897887 
    898888#if defined(WIN32) || defined(UNDER_CE)