summaryrefslogtreecommitdiff
path: root/vcnet/config.h
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2014-07-15 19:57:59 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2014-07-15 19:57:59 +0000
commit33c9220c0a1c7fa4f26cfc8a123794fff5e49f00 (patch)
tree91b6299c11bd38c108ca9cf05f9f3824be49e956 /vcnet/config.h
parent95d03f33750f2b47aabbd898d001d9c3a66cb7b1 (diff)
Get builds working on Windows again.
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12031 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'vcnet/config.h')
-rw-r--r--vcnet/config.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vcnet/config.h b/vcnet/config.h
index 5e4d75a60..a951f5485 100644
--- a/vcnet/config.h
+++ b/vcnet/config.h
@@ -57,6 +57,7 @@
* Map the POSIX sleep() and usleep() functions to the Win32 Sleep() function...
*/
+typedef unsigned long useconds_t;
#define sleep(X) Sleep(1000 * (X))
#define usleep(X) Sleep((X)/1000)