Changeset 1663 in Sophya for trunk/ArchTOIPipe/config.h


Ignore:
Timestamp:
Oct 1, 2001, 4:01:35 PM (24 years ago)
Author:
aubourg
Message:

darwin

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ArchTOIPipe/config.h

    r1477 r1663  
    99#ifndef WITH_SOPHYA
    1010#define NO_SOPHYA
     11
     12#ifdef HAVE_STDINT_H
     13#include <stdint.h>
     14  #define int_4 int4_t
     15  #define int_8 int8_t
     16  #define uint_8 uint8_t
     17#else
    1118#if SIZEOF_SHORT == 4
    1219  #define int_4  short int
     
    1926#if SIZEOF_LONG == 8
    2027  #define int_8 long
     28  #define uint_8 unsigned long
     29#elif SIZEOF_LONG_LONG == 8
     30  #define int_8 long long
     31  #define uint_8 unsigned long long
    2132#else
    22   #error long is not 8 bytes... 
     33  #error no 8-byte long int...
     34#endif
    2335#endif
    2436#endif
    2537
    2638#endif
     39
Note: See TracChangeset for help on using the changeset viewer.