diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-01-31 10:59:42 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-01-31 15:48:47 -0500 |
commit | 5cf9167f919dfef964b1d149731ed04941e25ebf (patch) | |
tree | 37668dde9fd4c68d80cb1bde90523b55fba4b226 /src/test/test-child.c | |
parent | 23054543278a8ee5db6d8dae3b3a96e2b2fd5377 (diff) | |
download | tor-5cf9167f919dfef964b1d149731ed04941e25ebf.tar.gz tor-5cf9167f919dfef964b1d149731ed04941e25ebf.zip |
Use the standard _WIN32, not the Torism MS_WINDOWS or deprecated WIN32
This commit is completely mechanical; I used this perl script to make it:
#!/usr/bin/perl -w -i.bak -p
if (/^\s*\#/) {
s/MS_WINDOWS/_WIN32/g;
s/\bWIN32\b/_WIN32/g;
}
Diffstat (limited to 'src/test/test-child.c')
-rw-r--r-- | src/test/test-child.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/test-child.c b/src/test/test-child.c index 1b9c5e3d57..b57d8caa90 100644 --- a/src/test/test-child.c +++ b/src/test/test-child.c @@ -1,6 +1,6 @@ #include <stdio.h> #include "orconfig.h" -#ifdef MS_WINDOWS +#ifdef _WIN32 #define WINDOWS_LEAN_AND_MEAN #include <windows.h> #else @@ -23,13 +23,13 @@ main(int argc, char **argv) succeed. Otherwise ReadFile() will get the entire output in one */ // XXX: Can we make stdio flush on newline? fflush(stdout); -#ifdef MS_WINDOWS +#ifdef _WIN32 Sleep(1000); #else sleep(1); #endif fprintf(stdout, "DONE\n"); -#ifdef MS_WINDOWS +#ifdef _WIN32 Sleep(1000); #else sleep(1); |