Blame lib/root-uid.h

Packit Service 2723c6
/* The user ID that always has appropriate privileges in the POSIX sense.
Packit Service 2723c6
Packit Service 2723c6
   Copyright 2012-2018 Free Software Foundation, Inc.
Packit Service 2723c6
Packit Service 2723c6
   This program is free software: you can redistribute it and/or modify
Packit Service 2723c6
   it under the terms of the GNU General Public License as published by
Packit Service 2723c6
   the Free Software Foundation; either version 3 of the License, or
Packit Service 2723c6
   (at your option) any later version.
Packit Service 2723c6
Packit Service 2723c6
   This program is distributed in the hope that it will be useful,
Packit Service 2723c6
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 2723c6
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service 2723c6
   GNU General Public License for more details.
Packit Service 2723c6
Packit Service 2723c6
   You should have received a copy of the GNU General Public License
Packit Service 2723c6
   along with this program.  If not, see <https://www.gnu.org/licenses/>.
Packit Service 2723c6
Packit Service 2723c6
   Written by Paul Eggert.  */
Packit Service 2723c6
Packit Service 2723c6
#ifndef ROOT_UID_H_
Packit Service 2723c6
#define ROOT_UID_H_
Packit Service 2723c6
Packit Service 2723c6
/* The user ID that always has appropriate privileges in the POSIX sense.  */
Packit Service 2723c6
#ifdef __TANDEM
Packit Service 2723c6
# define ROOT_UID 65535
Packit Service 2723c6
#else
Packit Service 2723c6
# define ROOT_UID 0
Packit Service 2723c6
#endif
Packit Service 2723c6
Packit Service 2723c6
#endif