Blame support/xsymlink.c

Packit Bot 3f3af5
/* Error-checking replacement for "symlink".
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 <support/support.h>
Packit Bot 3f3af5
#include <support/check.h>
Packit Bot 3f3af5
Packit Bot 3f3af5
#include <unistd.h>
Packit Bot 3f3af5
Packit Bot 3f3af5
void
Packit Bot 3f3af5
xsymlink (const char *target, const char *linkpath)
Packit Bot 3f3af5
{
Packit Bot 3f3af5
  if (symlink (target, linkpath) < 0)
Packit Bot 3f3af5
    FAIL_EXIT1 ("symlink (\"%s\", \"%s\")", target, linkpath);
Packit Bot 3f3af5
}