Blame support/true-container.c

Packit Service f9020f
/* Minimal /bin/true for in-container use.
Packit Service f9020f
   Copyright (C) 2018 Free Software Foundation, Inc.
Packit Service f9020f
   This file is part of the GNU C Library.
Packit Service f9020f
Packit Service f9020f
   The GNU C Library is free software; you can redistribute it and/or
Packit Service f9020f
   modify it under the terms of the GNU Lesser General Public
Packit Service f9020f
   License as published by the Free Software Foundation; either
Packit Service f9020f
   version 2.1 of the License, or (at your option) any later version.
Packit Service f9020f
Packit Service f9020f
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service f9020f
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service f9020f
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service f9020f
   Lesser General Public License for more details.
Packit Service f9020f
Packit Service f9020f
   You should have received a copy of the GNU Lesser General Public
Packit Service f9020f
   License along with the GNU C Library; if not, see
Packit Service f9020f
   <http://www.gnu.org/licenses/>.  */
Packit Service f9020f
Packit Service f9020f
/* Implements the in-container /bin/true, which always returns true
Packit Service f9020f
   (0).  */
Packit Service f9020f
Packit Service f9020f
int
Packit Service f9020f
main (void)
Packit Service f9020f
{
Packit Service f9020f
  return 0;
Packit Service f9020f
}