diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-11-10 21:17:53 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-11-10 21:17:53 +0000 |
commit | 07ff3037827a78be7525f2bb50cc1b828f1c7382 (patch) | |
tree | f84c4eb8bc77dd531e22597be7e7418877443ea5 /winsup/cygwin/winsup.h | |
parent | 73e36316cc018d809826c3ebaa9ff38028c8ba96 (diff) | |
download | cygnal-07ff3037827a78be7525f2bb50cc1b828f1c7382.tar.gz cygnal-07ff3037827a78be7525f2bb50cc1b828f1c7382.tar.bz2 cygnal-07ff3037827a78be7525f2bb50cc1b828f1c7382.zip |
* winsup.h (low_priority_sleep): Fix declaration to avoid linker
warning.
Diffstat (limited to 'winsup/cygwin/winsup.h')
-rw-r--r-- | winsup/cygwin/winsup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/winsup.h b/winsup/cygwin/winsup.h index c827ad8c7..1707d5fd2 100644 --- a/winsup/cygwin/winsup.h +++ b/winsup/cygwin/winsup.h @@ -279,7 +279,7 @@ int symlink_worker (const char *, const char *, bool, bool) class path_conv; int access_worker (path_conv&, int) __attribute__ ((regparm (2))); -extern "C" int low_priority_sleep (DWORD) __attribute__ ((regparm (1))); +extern int __stdcall low_priority_sleep (DWORD) __attribute__ ((regparm (1))); #define SLEEP_0_STAY_LOW INFINITE size_t getshmlba (void); |