* fixed compilation of AIX rtl with -Cr

git-svn-id: trunk@27603 -
This commit is contained in:
Jonas Maebe 2014-04-19 18:48:57 +00:00
parent 4ec3327bee
commit 4fa69488bc

View File

@ -193,7 +193,7 @@ const
TIOCSDTR = IOC_VOID or (ord('t') shl 8) or 121; { set data terminal ready }
TIOCCDTR = IOC_VOID or (ord('t') shl 8) or 120; { clear data terminal ready }
TIOCGPGRP = IOC_OUT or ((sizeof(cint) and IOCPARM_MASK) shl 16) or (ord('t') shl 8) or 119; { get process group }
TIOCSPGRP = IOC_IN or ((sizeof(cint) and IOCPARM_MASK) shl 16) or (ord('t') shl 8) or 118; { set process group }
TIOCSPGRP = cint(IOC_IN or ((sizeof(cint) and IOCPARM_MASK) shl 16) or (ord('t') shl 8) or 118); { set process group }
// TIOCSLTC = IOC_IN or ((sizeof(struct ltchars) and IOCPARM_MASK) shl 16) or (ord('t') shl 8) or 117{ set local special chars }
// TIOCGLTC = IOC_OUT or ((sizeof(struct ltchars) and IOCPARM_MASK) shl 16) or (ord('t') shl 8) or 116{ get local special chars }
TIOCOUTQ = IOC_OUT or ((sizeof(cint) and IOCPARM_MASK) shl 16) or (ord('t') shl 8) or 115; { output queue size }