Blame support/echo-container.c

Packit Bot 3f3af5
/* Minimal /bin/echo for in-container use.
Packit Bot 3f3af5
   Copyright (C) 2018 Free Software Foundation, Inc.
Packit Bot 3f3af5
   This file is part of the GNU C Library.
Packit Bot 3f3af5
Packit Bot 3f3af5
   The GNU C Library is free software; you can redistribute it and/or
Packit Bot 3f3af5
   modify it under the terms of the GNU Lesser General Public
Packit Bot 3f3af5
   License as published by the Free Software Foundation; either
Packit Bot 3f3af5
   version 2.1 of the License, or (at your option) any later version.
Packit Bot 3f3af5
Packit Bot 3f3af5
   The GNU C Library is distributed in the hope that it will be useful,
Packit Bot 3f3af5
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Bot 3f3af5
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Bot 3f3af5
   Lesser General Public License for more details.
Packit Bot 3f3af5
Packit Bot 3f3af5
   You should have received a copy of the GNU Lesser General Public
Packit Bot 3f3af5
   License along with the GNU C Library; if not, see
Packit Bot 3f3af5
   <http://www.gnu.org/licenses/>.  */
Packit Bot 3f3af5
Packit Bot 3f3af5
#include <stdio.h>
Packit Bot 3f3af5
Packit Bot 3f3af5
int
Packit Bot 3f3af5
main (int argc, const char **argv)
Packit Bot 3f3af5
{
Packit Bot 3f3af5
  int i;
Packit Bot 3f3af5
Packit Bot 3f3af5
  for (i = 1; i < argc; i++)
Packit Bot 3f3af5
    {
Packit Bot 3f3af5
      if (i > 1)
Packit Bot 3f3af5
	putchar (' ');
Packit Bot 3f3af5
      fputs (argv[i], stdout);
Packit Bot 3f3af5
    }
Packit Bot 3f3af5
  putchar ('\n');
Packit Bot 3f3af5
  return 0;
Packit Bot 3f3af5
}