Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
456
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
4b8ce41a
Commit
4b8ce41a
authored
16 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
We need <inttypes.h>, always
parent
9cef959f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/vlc_common.h
+1
-38
1 addition, 38 deletions
include/vlc_common.h
with
1 addition
and
38 deletions
include/vlc_common.h
+
1
−
38
View file @
4b8ce41a
...
...
@@ -46,6 +46,7 @@
#include
<string.h>
#include
<stdio.h>
#include
<inttypes.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
...
...
@@ -54,44 +55,6 @@
/*****************************************************************************
* Basic types definitions
*****************************************************************************/
#if defined( HAVE_INTTYPES_H )
# include <inttypes.h>
#elif defined( SYS_CYGWIN )
/* Cygwin only defines half of these... */
typedef
u_int8_t
uint8_t
;
typedef
u_int16_t
uint16_t
;
typedef
u_int32_t
uint32_t
;
typedef
u_int64_t
uint64_t
;
#else
/* Fallback types (very x86-centric, sorry) */
typedef
unsigned
char
uint8_t
;
typedef
signed
char
int8_t
;
typedef
unsigned
short
uint16_t
;
typedef
signed
short
int16_t
;
typedef
unsigned
int
uint32_t
;
typedef
signed
int
int32_t
;
# if defined( _MSC_VER ) \
|| defined( UNDER_CE ) \
|| ( defined( WIN32 ) && !defined( __MINGW32__ ) )
typedef
unsigned
__int64
uint64_t
;
typedef
signed
__int64
int64_t
;
# else
typedef
unsigned
long
long
uint64_t
;
typedef
signed
long
long
int64_t
;
# endif
typedef
uint32_t
uintptr_t
;
typedef
int32_t
intptr_t
;
#endif
/* Systems that don't have stdint.h may not define INT64_MIN and
INT64_MAX */
#ifndef INT64_MIN
#define INT64_MIN (-9223372036854775807LL-1)
#endif
#ifndef INT64_MAX
#define INT64_MAX (9223372036854775807LL)
#endif
#if defined( WIN32 ) || defined( UNDER_CE )
# include <malloc.h>
# ifndef PATH_MAX
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment