diff options
author | Christopher Faylor <me@cgf.cx> | 2002-06-06 00:09:55 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-06-06 00:09:55 +0000 |
commit | ee964e2f97ca0ca9033b6daf975cada710a46737 (patch) | |
tree | c3cbe756486fff12e467b6f55a8263f7380fccc1 /winsup/cygwin/times.cc | |
parent | 39e65e0113e188e4177077407d337bb3a1ac1853 (diff) | |
download | cygnal-ee964e2f97ca0ca9033b6daf975cada710a46737.tar.gz cygnal-ee964e2f97ca0ca9033b6daf975cada710a46737.tar.bz2 cygnal-ee964e2f97ca0ca9033b6daf975cada710a46737.zip |
* cygwin.din: Eliminate some newlib wrappers.
* path.cc (get_devn): Only consider first 99 potential com devices.
(get_device_number): Ditto.
* times.cc (_times): Eliminate.
(_times): Renamed from times().
Diffstat (limited to 'winsup/cygwin/times.cc')
-rw-r--r-- | winsup/cygwin/times.cc | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/winsup/cygwin/times.cc b/winsup/cygwin/times.cc index 6769b4e74..e8a886b71 100644 --- a/winsup/cygwin/times.cc +++ b/winsup/cygwin/times.cc @@ -46,7 +46,7 @@ __to_clock_t (FILETIME * src, int flag) /* times: POSIX 4.5.2.1 */ extern "C" clock_t -times (struct tms * buf) +_times (struct tms * buf) { FILETIME creation_time, exit_time, kernel_time, user_time; @@ -86,12 +86,6 @@ times (struct tms * buf) return tc; } -extern "C" clock_t -_times (struct tms * buf) -{ - return times (buf); -} - /* settimeofday: BSD */ extern "C" int settimeofday (const struct timeval *tv, const struct timezone *tz) |