diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-03-06 16:32:05 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-03-06 16:32:05 (GMT) |
commit | f8d767198f11ab1011164d907de8332138162d94 (patch) | |
tree | 1db3f9ca3e2fcc88582ea9af8833b5aa8d6cd69a /PC/pyconfig.h | |
parent | a2d4d6c285e6d076e8d30f0d76dec46ba045ebc7 (diff) | |
download | cpython-f8d767198f11ab1011164d907de8332138162d94.zip cpython-f8d767198f11ab1011164d907de8332138162d94.tar.gz cpython-f8d767198f11ab1011164d907de8332138162d94.tar.bz2 |
lower-case time_t.
Diffstat (limited to 'PC/pyconfig.h')
-rw-r--r-- | PC/pyconfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 194f7ba..6c7846e 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -276,7 +276,7 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ # define SIZEOF_FPOS_T 8 # define SIZEOF_HKEY 4 # define SIZEOF_SIZE_T 4 - /* MS VS2005 changes TIME_T to an 64-bit type on all platforms */ + /* MS VS2005 changes time_t to an 64-bit type on all platforms */ # if defined(_MSC_VER) && _MSC_VER >= 1400 # define SIZEOF_TIME_T 8 # else |