mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
linux ttyname: Change return type of is_pty from int to bool
is_pty returning a bool is fine since there's no possible outcome other than true or false, and bool is used throughout the codebase. Reviewed-by: Christian Brauner <christian.brauner@ubuntu.com>
This commit is contained in:
parent
9b5a87502d
commit
d10d6cab16
@ -1,5 +1,8 @@
|
||||
2017-11-15 Luke Shumaker <lukeshu@parabola.nu>
|
||||
|
||||
* sysdeps/unix/sysv/linux/ttyname.h (is_pty): Change return type from
|
||||
int to bool.
|
||||
|
||||
* sysdeps/unix/sysv/linux/ttyname.h (is_pty): Update doc reference.
|
||||
|
||||
* manual/terminal.texi (Is It a Terminal):
|
||||
|
@ -16,6 +16,7 @@
|
||||
not, see <http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <unistd.h>
|
||||
#include <stdbool.h>
|
||||
#include <sys/sysmacros.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
@ -23,7 +24,7 @@
|
||||
/* Return true if this is a UNIX98 pty device, as defined in
|
||||
linux/Documentation/devices.txt (on linux < 4.10) or
|
||||
linux/Documentation/admin-guide/devices.txt (on linux >= 4.10). */
|
||||
static inline int
|
||||
static inline bool
|
||||
is_pty (struct stat64 *sb)
|
||||
{
|
||||
#ifdef _STATBUF_ST_RDEV
|
||||
|
Loading…
Reference in New Issue
Block a user