Program:   gdcm
   Module:    $RCSfile: gdcmCommon.h,v $
   Language:  C++
-  Date:      $Date: 2004/10/07 16:55:16 $
-  Version:   $Revision: 1.34 $
+  Date:      $Date: 2004/10/08 08:41:04 $
+  Version:   $Revision: 1.35 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 #ifndef HAVE_NO_STDINT_H
 #include <stdint.h>   // For uint8_t uint16_t and uint32_t
 #else
+typedef    signed char   int8_t;
 typedef  unsigned char  uint8_t;
 typedef  unsigned short uint16_t;
 typedef  unsigned int   uint32_t;
 #endif
 
 #ifdef _MSC_VER 
+typedef    signed char   int8_t;
 typedef  unsigned char  uint8_t;
 typedef  unsigned short uint16_t;
 typedef  unsigned int   uint32_t;