summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorJohn Bley <jbb6@acpub.duke.edu>1999-03-31 21:01:47 -0500
committerJarkko Hietaniemi <jhi@iki.fi>1999-04-03 16:20:09 +0000
commit761237fefd8d9f4cca56ce455ad540cab9bb0e3e (patch)
treef71e0e43811c64ce64f7497ce97d2a35a87c75ad /pp_sys.c
parentcf04f91f6497885a7b3433359e82988880c40828 (diff)
downloadperl-761237fefd8d9f4cca56ce455ad540cab9bb0e3e.tar.gz
Fix up some _t nits (Pid_t, Gid_t, Uid_t, etc. instead of int).
To: perlbug@perl.org Subject: [PATCH]5.005_03 (CORE) Fix some _t nits Message-ID: <Pine.SOL.3.91.990401015805.21458A-100000@soc13.acpub.duke.edu> p4raw-id: //depot/cfgperl@3212
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 00ee2b194e..2ba6ecb16b 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -607,7 +607,7 @@ PP(pp_fileno)
PP(pp_umask)
{
djSP; dTARGET;
- int anum;
+ Mode_t anum;
#ifdef HAS_UMASK
if (MAXARG < 1) {
@@ -3380,7 +3380,7 @@ PP(pp_fork)
{
#ifdef HAS_FORK
djSP; dTARGET;
- int childpid;
+ Pid_t childpid;
GV *tmpgv;
EXTEND(SP, 1);
@@ -3404,7 +3404,7 @@ PP(pp_wait)
{
#if !defined(DOSISH) || defined(OS2) || defined(WIN32)
djSP; dTARGET;
- int childpid;
+ Pid_t childpid;
int argflags;
childpid = wait4pid(-1, &argflags, 0);
@@ -3420,7 +3420,7 @@ PP(pp_waitpid)
{
#if !defined(DOSISH) || defined(OS2) || defined(WIN32)
djSP; dTARGET;
- int childpid;
+ Pid_t childpid;
int optype;
int argflags;
@@ -3439,7 +3439,7 @@ PP(pp_system)
{
djSP; dMARK; dORIGMARK; dTARGET;
I32 value;
- int childpid;
+ Pid_t childpid;
int result;
int status;
Sigsave_t ihand,qhand; /* place to save signals during system() */