Ignore:
Timestamp:
2012-02-28T16:08:24+13:00 (12 years ago)
Author:
sjm84
Message:

Fixed an instance of stdint that I missed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/common-src/indexers/mgpp/lib/longlong.h

    r25147 r25153  
    7474#else
    7575
     76#ifdef __unix__
    7677#include <stdint.h>
     78#else
     79typedef __int8            int8_t;
     80typedef __int16           int16_t;
     81typedef __int32           int32_t;
     82typedef __int64           int64_t;
     83typedef unsigned __int8   uint8_t;
     84typedef unsigned __int16  uint16_t;
     85typedef unsigned __int32  uint32_t;
     86typedef unsigned __int64  uint64_t;
     87#endif
    7788/* Not using GCC, so fall back on plain "long" (32-bit) types */
    7889typedef uint32_t mg_ullong;
Note: See TracChangeset for help on using the changeset viewer.