diff options
author | Christopher Faylor <me@cgf.cx> | 2008-09-11 04:41:24 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2008-09-11 04:41:24 +0000 |
commit | e3cbf1cc486e0771bf6ee2ebec4d38cebcf9e0d3 (patch) | |
tree | bce302cbc526345147062fba789030e2cbfc907f /winsup/cygwin/pipe.cc | |
parent | 7b9e380f0362aad5dfa3e06e60fd6d06549e2306 (diff) | |
download | newlib-e3cbf1cc486e0771bf6ee2ebec4d38cebcf9e0d3.zip newlib-e3cbf1cc486e0771bf6ee2ebec4d38cebcf9e0d3.tar.gz newlib-e3cbf1cc486e0771bf6ee2ebec4d38cebcf9e0d3.tar.bz2 |
* fhandler.h (fhandler_pipe::raw_read): Remove __stdcall decoration.
* pipe.cc (fhandler_pipe::raw_read): Ditto.
Diffstat (limited to 'winsup/cygwin/pipe.cc')
-rw-r--r-- | winsup/cygwin/pipe.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/pipe.cc b/winsup/cygwin/pipe.cc index 303f061..5f4717b 100644 --- a/winsup/cygwin/pipe.cc +++ b/winsup/cygwin/pipe.cc @@ -292,7 +292,7 @@ fhandler_pipe::get_proc_fd_name (char *buf) return buf; } -void __stdcall +void fhandler_pipe::raw_read (void *in_ptr, size_t& in_len) { return read_overlapped (in_ptr, in_len); |