diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-22 20:34:28 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-22 20:34:28 +0000 |
commit | 85ca448a836bf0ba175d8874ee540094ff909f93 (patch) | |
tree | 86b6cebd52d43163073c1b5f8f08b8ab9b5abff5 /epoc/epocish.h | |
parent | 1f56d61a5b03f36bb86c918d42e906ba72608431 (diff) | |
download | perl-85ca448a836bf0ba175d8874ee540094ff909f93.tar.gz |
EPOC update from Olaf Flebbe.
p4raw-id: //depot/perl@15426
Diffstat (limited to 'epoc/epocish.h')
-rw-r--r-- | epoc/epocish.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/epoc/epocish.h b/epoc/epocish.h index ae4970fc3a..a98faa0415 100644 --- a/epoc/epocish.h +++ b/epoc/epocish.h @@ -107,14 +107,14 @@ /* these should be set in a hint file, not here */ #ifndef PERL_SYS_INIT -# define PERL_SYS_INIT(c,v) Perl_epoc_init(c,v); MALLOC_INIT +# define PERL_SYS_INIT(c,v) MALLOC_INIT #endif #ifndef PERL_SYS_TERM #define PERL_SYS_TERM() MALLOC_TERM #endif -#define BIT_BUCKET "NUL:" +#define BIT_BUCKET "/dev/null" #define dXSUB_SYS @@ -136,8 +136,6 @@ atof() in ER5 stdlib depends on locale. */ -double epoc_atof( const char *ptr); -#define atof(a) epoc_atof(a) #define strtoul(a,b,c) epoc_strtoul(a,b,c) #define init_os_extras Perl_init_os_extras @@ -146,3 +144,5 @@ double epoc_atof( const char *ptr); #define ARG_MAX 4096 +#define ECONNABORTED 0xdead + |