stop using Py_LL and Py_ULL
diff --git a/Include/pythread.h b/Include/pythread.h
index 459a5d5..dd681be 100644
--- a/Include/pythread.h
+++ b/Include/pythread.h
@@ -42,9 +42,9 @@
 
 /* In the NT API, the timeout is a DWORD and is expressed in milliseconds */
 #if defined (NT_THREADS)
-#if (Py_LL(0xFFFFFFFF) * 1000 < PY_TIMEOUT_MAX)
+#if 0xFFFFFFFFLL * 1000 < PY_TIMEOUT_MAX
 #undef PY_TIMEOUT_MAX
-#define PY_TIMEOUT_MAX (Py_LL(0xFFFFFFFF) * 1000)
+#define PY_TIMEOUT_MAX (0xFFFFFFFFLL * 1000)
 #endif
 #endif