diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 2001-06-24 01:37:19 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-24 13:07:46 +0000 |
commit | 2d766320ce469e157550747df903293379e4b3e1 (patch) | |
tree | cd7ced1bcb4c3cd0445dd9a4b765713a9a0f50d4 /os2/os2ish.h | |
parent | 76ffd3b9d75e6a61dbe4a97be9c85c8229b00fb8 (diff) | |
download | perl-2d766320ce469e157550747df903293379e4b3e1.tar.gz |
Re: [PATCH 5.6.1] OS2 warnings
Message-ID: <20010624053719.A27866@math.ohio-state.edu>
p4raw-id: //depot/perl@10882
Diffstat (limited to 'os2/os2ish.h')
-rw-r--r-- | os2/os2ish.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/os2/os2ish.h b/os2/os2ish.h index e6e8b5faef..d5244349d4 100644 --- a/os2/os2ish.h +++ b/os2/os2ish.h @@ -1,4 +1,6 @@ #include <signal.h> +#include <io.h> +/* #include <sys/select.h> */ /* HAS_IOCTL: * This symbol, if defined, indicates that the ioctl() routine is @@ -471,6 +473,14 @@ void init_PMWIN_entries(void); char *perllib_mangle(char *, unsigned int); char *os2error(int rc); +int os2_stat(const char *name, struct stat *st); +int setpriority(int which, int pid, int val); +int getpriority(int which /* ignored */, int pid); + +#ifdef PERL_CORE +int os2_do_spawn(pTHX_ char *cmd); +int os2_do_aspawn(pTHX_ SV *really, void **vmark, void **vsp); +#endif /* ************************************************************ */ #define Dos32QuerySysState DosQuerySysState |