summaryrefslogtreecommitdiffstats
path: root/Lib/plat-irix6/WAIT.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/plat-irix6/WAIT.py')
-rw-r--r--Lib/plat-irix6/WAIT.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/plat-irix6/WAIT.py b/Lib/plat-irix6/WAIT.py
index 741af3b..13a87e4 100644
--- a/Lib/plat-irix6/WAIT.py
+++ b/Lib/plat-irix6/WAIT.py
@@ -68,7 +68,7 @@ FD_SETSIZE = 1024
__NBBY = 8
# Included from string.h
-NULL = 0L
+NULL = 0
NBBY = 8
# Included from sys/procset.h
@@ -286,9 +286,9 @@ CXT_SR = CTX_SR
SV_ONSTACK = 0x0001
SV_INTERRUPT = 0x0002
NUMBSDSIGS = (32)
-def sigmask(sig): return (1L << ((sig)-1))
+def sigmask(sig): return (1 << ((sig)-1))
-def sigmask(sig): return (1L << ((sig)-1))
+def sigmask(sig): return (1 << ((sig)-1))
SIG_ERR = (-1)
SIG_IGN = (1)