summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPort.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-03-09 12:49:41 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-03-09 12:49:41 (GMT)
commit4f3c0fa94fcc4ce830c4765499a42261934c48e7 (patch)
tree57c7b12ae94e928d50c4020a961b23e9ac0cfed2 /unix/tclUnixPort.h
parent36d1b8447caf0aba9a4adf65b13029f35f89c0d9 (diff)
downloadtcl-4f3c0fa94fcc4ce830c4765499a42261934c48e7.zip
tcl-4f3c0fa94fcc4ce830c4765499a42261934c48e7.tar.gz
tcl-4f3c0fa94fcc4ce830c4765499a42261934c48e7.tar.bz2
Use more uppercase hex (e.g. 0xFF) in stead of lowercase (0xff) consistantly.
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r--unix/tclUnixPort.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h
index 9a923ef..086dd91 100644
--- a/unix/tclUnixPort.h
+++ b/unix/tclUnixPort.h
@@ -227,27 +227,27 @@ extern int TclUnixSetBlockingMode(int fd, int mode);
*/
#ifndef WIFEXITED
-# define WIFEXITED(stat) (((*((int *) &(stat))) & 0xff) == 0)
+# define WIFEXITED(stat) (((*((int *) &(stat))) & 0xFF) == 0)
#endif
#ifndef WEXITSTATUS
-# define WEXITSTATUS(stat) (((*((int *) &(stat))) >> 8) & 0xff)
+# define WEXITSTATUS(stat) (((*((int *) &(stat))) >> 8) & 0xFF)
#endif
#ifndef WIFSIGNALED
-# define WIFSIGNALED(stat) (((*((int *) &(stat)))) && ((*((int *) &(stat))) == ((*((int *) &(stat))) & 0x00ff)))
+# define WIFSIGNALED(stat) (((*((int *) &(stat)))) && ((*((int *) &(stat))) == ((*((int *) &(stat))) & 0xFF)))
#endif
#ifndef WTERMSIG
-# define WTERMSIG(stat) ((*((int *) &(stat))) & 0x7f)
+# define WTERMSIG(stat) ((*((int *) &(stat))) & 0x7F)
#endif
#ifndef WIFSTOPPED
-# define WIFSTOPPED(stat) (((*((int *) &(stat))) & 0xff) == 0177)
+# define WIFSTOPPED(stat) (((*((int *) &(stat))) & 0xFF) == 0177)
#endif
#ifndef WSTOPSIG
-# define WSTOPSIG(stat) (((*((int *) &(stat))) >> 8) & 0xff)
+# define WSTOPSIG(stat) (((*((int *) &(stat))) >> 8) & 0xFF)
#endif
/*