2009-01-28 04:27 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/common/hbprintf.c
    * added yet another TODO marker for easier code updating to new
      C compilers
This commit is contained in:
Przemyslaw Czerpak
2009-01-28 03:23:49 +00:00
parent b65722d87a
commit ae623a5876
2 changed files with 10 additions and 0 deletions

View File

@@ -8,6 +8,11 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2009-01-28 04:27 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/common/hbprintf.c
* added yet another TODO marker for easier code updating to new
C compilers
2009-01-27 17:23 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/config/dos/owatcom.cf
* increased max library page size (-p=32 => -p=64)

View File

@@ -142,6 +142,11 @@ HB_EXTERN_END
( defined( __WATCOMC__ ) && __WATCOMC__ < 1270 ) || \
( defined( __DJGPP__ ) && \
( __DJGPP__ < 2 || ( __DJGPP__ == 2 && __DJGPP_MINOR__ <= 3 ) ) )
/* TODO: add other C compilers which does not support [u]intmax_t
* definitions (check C compiler version number).
* If compiler supports stdint.h then it should be added
* to hbdefs.h.
*/
# define intmax_t _x_longlong
# define uintmax_t _x_ulonglong
#endif