Commit 5402d883 authored by Gildas Bazin's avatar Gildas Bazin


* fixed compilation problem related to ssize_t
parent e28bab12
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Collection of useful common types and macros definitions * Collection of useful common types and macros definitions
***************************************************************************** *****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN * Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: common.h,v 1.81 2002/03/02 03:53:54 xav Exp $ * $Id: common.h,v 1.82 2002/03/02 09:34:23 gbazin Exp $
* *
* Authors: Samuel Hocevar <sam@via.ecp.fr> * Authors: Samuel Hocevar <sam@via.ecp.fr>
* Vincent Seguin <seguin@via.ecp.fr> * Vincent Seguin <seguin@via.ecp.fr>
...@@ -62,12 +62,11 @@ typedef int ptrdiff_t; ...@@ -62,12 +62,11 @@ typedef int ptrdiff_t;
# endif # endif
#endif #endif
#ifndef _SSIZE_T #if defined( WIN32 )
typedef s64 ssize_t; typedef int ssize_t;
#endif #endif
/* Counter for statistics and profiling */ /* Counter for statistics and profiling */
typedef unsigned long count_t; typedef unsigned long count_t;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment