]> granicus.if.org Git - libatomic_ops/commitdiff
Eliminate 'cast to long from void*' compiler warning in test_atomic
authorIvan Maidanski <ivmai@mail.ru>
Wed, 12 Oct 2016 06:17:01 +0000 (09:17 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Wed, 12 Oct 2016 06:35:50 +0000 (09:35 +0300)
* tests/run_parallel.h (AO_PTRDIFF_T): Define to ptrdiff_t for all
targets.

tests/run_parallel.h

index d24b9e632dad18375daf3ec955afc871b060ab4a..7500efa09268a7890de1bf65d7d092600a813dcb 100644 (file)
 # define abort() _exit(-1) /* there is no abort() in WinCE */
 #endif
 
-#ifndef _WIN64
-# define AO_PTRDIFF_T long
-#elif defined(__int64)
-# define AO_PTRDIFF_T __int64
-#else
-# define AO_PTRDIFF_T long long
+#ifndef AO_PTRDIFF_T
+# define AO_PTRDIFF_T ptrdiff_t
 #endif
 
 typedef void * (* thr_func)(void *);