Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
f01f0a38
Commit
f01f0a38
authored
Nov 07, 2002
by
Sam Hocevar
Browse files
* ./include/vlc_common.h: compilation fix for Cygwin.
parent
802def2a
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/vlc_common.h
View file @
f01f0a38
...
...
@@ -3,7 +3,7 @@
* Collection of useful common types and macros definitions
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: vlc_common.h,v 1.3
3
2002/1
0/29 13:22:47
sam Exp $
* $Id: vlc_common.h,v 1.3
4
2002/1
1/07 22:56:08
sam Exp $
*
* Authors: Samuel Hocevar <sam@via.ecp.fr>
* Vincent Seguin <seguin@via.ecp.fr>
...
...
@@ -59,6 +59,13 @@
# include <stdint.h>
#elif defined( HAVE_INTTYPES_H )
# include <inttypes.h>
#elif defined( SYS_CYGWIN )
# include <sys/types.h>
/* 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
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment