Update of /cvsroot/mplayer/main/etc In directory mplayer:/var/tmp.root/cvs-serv959 Added Files: cygwin_inttypes.h Log Message: /usr//include/inttypes.h for CYGWIN --- NEW FILE --- #ifndef _CYGWIN_INTTYPES_H #define _CYGWIN_INTTYPES_H /* /usr/include/inttypes.h for CYGWIN * Copyleft 2001-2002 by Felix Buenemann * <atmosfear at users.sourceforge.net> * * Should be installed into /usr/include * as inttypes.h */ #if 0 typedef char * caddr_t; typedef char int8_t; typedef unsigned char u_int8_t; typedef short int16_t; typedef unsigned short u_int16_t; typedef int int32_t; typedef unsigned int u_int32_t; typedef long long int64_t; typedef unsigned long long u_int64_t; typedef int32_t register_t; #else #include <sys/types.h> #endif /* 0/1 */ typedef u_int8_t uint8_t; typedef u_int16_t uint16_t; typedef u_int32_t uint32_t; typedef u_int64_t uint64_t; #endif /* _CYGWIN_INTTYPES_H */
Hello, Atmosfear! On Sun, 20 Jan 2002 20:09:00 +0100 you wrote:
Update of /cvsroot/mplayer/main/etc In directory mplayer:/var/tmp.root/cvs-serv959
Added Files: cygwin_inttypes.h Log Message: /usr//include/inttypes.h for CYGWIN
--- NEW FILE --- #ifndef _CYGWIN_INTTYPES_H #define _CYGWIN_INTTYPES_H /* /usr/include/inttypes.h for CYGWIN * Copyleft 2001-2002 by Felix Buenemann * <atmosfear at users.sourceforge.net> * * Should be installed into /usr/include * as inttypes.h */ #if 0 typedef char * caddr_t; typedef char int8_t; typedef unsigned char u_int8_t; typedef short int16_t; typedef unsigned short u_int16_t; typedef int int32_t; typedef unsigned int u_int32_t; typedef long long int64_t; typedef unsigned long long u_int64_t; typedef int32_t register_t; #else #include <sys/types.h> #endif /* 0/1 */ typedef u_int8_t uint8_t; typedef u_int16_t uint16_t; typedef u_int32_t uint32_t; typedef u_int64_t uint64_t; #endif /* _CYGWIN_INTTYPES_H */
_______________________________________________ Mplayer-cvslog mailing list Mplayer-cvslog@mplayerhq.hu http://mplayerhq.hu/mailman/listinfo/mplayer-cvslog
Know problem - I have similar file in my project ;) Best regards! Nick
participants (2)
-
Atmosfear -
Nick Kurshev