diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-26 13:39:12 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-26 13:39:12 +0000 |
commit | ca6c63e1e9622808fb1119b6b9d65061b2f2fbf3 (patch) | |
tree | d4e38d1834cd487fd509c1d19ca9966e6b0db673 /wince/wince.c | |
parent | 6f942b98720ba1a1943b0ad83963ea2d8c233143 (diff) | |
download | perl-ca6c63e1e9622808fb1119b6b9d65061b2f2fbf3.tar.gz |
WinCE update from Rainer Keuchel.
p4raw-id: //depot/perl@12685
Diffstat (limited to 'wince/wince.c')
-rw-r--r-- | wince/wince.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/wince/wince.c b/wince/wince.c index e9c9c8c3b3..c34928e250 100644 --- a/wince/wince.c +++ b/wince/wince.c @@ -1,6 +1,6 @@ /* WINCE.C - stuff for Windows CE * - * Time-stamp: <01/08/01 19:29:57 keuchel@w2k> + * Time-stamp: <26/10/01 15:25:20 keuchel@keuchelnt> * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. @@ -1597,3 +1597,19 @@ Perl_sys_intern_clear(pTHX) # endif } +////////////////////////////////////////////////////////////////////// + +#undef getcwd + +char * +getcwd(char *buf, size_t size) +{ + return xcegetcwd(buf, size); +} + +int +isnan(double d) +{ + return _isnan(d); +} + |