Fix definition of S_ISUID.

* include/sys/stat.h (S_ISUID: Append missing zero.
This commit is contained in:
Dor Askayo 2022-01-01 20:38:38 +02:00 committed by Jan (janneke) Nieuwenhuizen
parent f785f8d560
commit ce54ccc2c0
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273

View file

@ -1,6 +1,7 @@
/* -*-comment-start: "//";comment-end:""-*-
* GNU Mes --- Maxwell Equations of Software
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
* Copyright © 2022 Dor Askayo <dor.askayo@gmail.com>
*
* This file is part of GNU Mes.
*
@ -107,7 +108,7 @@ int stat (char const *file_name, struct stat *buf);
#define S_IWUSR 00200
#define S_IRUSR 00400
#define S_ISUID 0400
#define S_ISUID 04000
#define S_ISGID 02000
#define S_IXGRP 00010
#define S_IXOTH 00001