summaryrefslogtreecommitdiff
path: root/wince
diff options
context:
space:
mode:
authorVadim Konovalov <vkonovalov@lucent.com>2002-05-12 06:34:24 +0400
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-11 21:41:11 +0000
commitbcdf844ec43758755fb92c24cba65e915d95b25b (patch)
tree33bd1303ce60cfd61b1fd3dfc743547100713636 /wince
parente2a02c1e735e4afbf3df91186f80982fdd43695e (diff)
downloadperl-bcdf844ec43758755fb92c24cba65e915d95b25b.tar.gz
a bit more for WinCE
Message-ID: <007b01c1f93c$0e03f960$035cc3d9@vad> p4raw-id: //depot/perl@16549
Diffstat (limited to 'wince')
-rw-r--r--wince/wince.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/wince/wince.c b/wince/wince.c
index f72c1fef1e..8aefe6ca17 100644
--- a/wince/wince.c
+++ b/wince/wince.c
@@ -947,12 +947,11 @@ win32_rename(const char *oname, const char *newname)
DllExport int
win32_setmode(int fd, int mode)
{
- if(mode != O_BINARY)
- {
- Perl_croak(aTHX_ PL_no_func, "setmode");
- return -1;
- }
- return 0;
+ /* currently 'celib' seem to have this function in src, but not
+ * exported. When it will be, we'll uncomment following line.
+ */
+ /* return xcesetmode(fd, mode); */
+ return 0;
}
DllExport long