diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-03-14 03:18:35 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-03-14 03:18:35 +0000 |
commit | 97dad670ead7383d27c9a284be09d37b6151b29e (patch) | |
tree | 742dc673e66270f931802b5023450233d2da2bb9 /src/common/compat.h | |
parent | fd150459b36128695e6ce74e4d99d7896fee5e38 (diff) | |
download | tor-97dad670ead7383d27c9a284be09d37b6151b29e.tar tor-97dad670ead7383d27c9a284be09d37b6151b29e.tar.gz |
Renormalize whitespace
svn:r3757
Diffstat (limited to 'src/common/compat.h')
-rw-r--r-- | src/common/compat.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/common/compat.h b/src/common/compat.h index 801f1893f..fbb44d0fa 100644 --- a/src/common/compat.h +++ b/src/common/compat.h @@ -206,7 +206,6 @@ char *get_user_homedir(const char *username); int spawn_func(int (*func)(void *), void *data); void spawn_exit(void); - #if defined(MS_WINDOWS) #define USE_WIN32_THREADS #define TOR_IS_MULTITHREADED 1 @@ -230,10 +229,8 @@ unsigned long tor_get_thread_id(void); #define tor_mutex_new() ((tor_mutex_t*)tor_malloc(sizeof(int))) #define tor_mutex_acquire(m) do { } while (0) #define tor_mutex_release(m) do { } while (0) -#define tor_mutex_free(m) do { tor_free(m); } while(0) +#define tor_mutex_free(m) do { tor_free(m); } while (0) #define tor_get_thread_id() (1UL) #endif - #endif - |