damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

pinline.h (424B)


      1 #ifndef PINLINE_H
      2 #define PINLINE_H
      3 
      4 #ifndef __cplusplus
      5 
      6 #if (defined(__STDC__) && __STDC__ && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
      7 /* C99 or newer */
      8 #elif _MSC_VER >= 1500 /* MSVC 9 or newer */
      9 #undef inline
     10 #define inline __inline
     11 #elif __GNUC__ >= 3 /* GCC 3 or newer */
     12 #define inline __inline
     13 #else /* Unknown or ancient */
     14 #define inline
     15 #endif
     16 
     17 #endif /* __cplusplus */
     18 
     19 #endif /* PINLINE_H */