OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [libiberty/] [unlink-if-ordinary.c] - Diff between revs 154 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
/* unlink-if-ordinary.c - remove link to a file unless it is special
/* unlink-if-ordinary.c - remove link to a file unless it is special
   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
 
 
This file is part of the libiberty library.  This library is free
This file is part of the libiberty library.  This library is free
software; you can redistribute it and/or modify it under the
software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the
terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option)
Free Software Foundation; either version 2, or (at your option)
any later version.
any later version.
 
 
This library is distributed in the hope that it will be useful,
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with GNU CC; see the file COPYING.  If not, write to
along with GNU CC; see the file COPYING.  If not, write to
the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
 
 
As a special exception, if you link this library with files
As a special exception, if you link this library with files
compiled with a GNU compiler to produce an executable, this does not cause
compiled with a GNU compiler to produce an executable, this does not cause
the resulting executable to be covered by the GNU General Public License.
the resulting executable to be covered by the GNU General Public License.
This exception does not however invalidate any other reasons why
This exception does not however invalidate any other reasons why
the executable file might be covered by the GNU General Public License. */
the executable file might be covered by the GNU General Public License. */
 
 
/*
/*
 
 
@deftypefn Supplemental int unlink_if_ordinary (const char*)
@deftypefn Supplemental int unlink_if_ordinary (const char*)
 
 
Unlinks the named file, unless it is special (e.g. a device file).
Unlinks the named file, unless it is special (e.g. a device file).
Returns 0 when the file was unlinked, a negative value (and errno set) when
Returns 0 when the file was unlinked, a negative value (and errno set) when
there was an error deleting the file, and a positive value if no attempt
there was an error deleting the file, and a positive value if no attempt
was made to unlink the file because it is special.
was made to unlink the file because it is special.
 
 
@end deftypefn
@end deftypefn
 
 
*/
*/
 
 
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#include "config.h"
#endif
#endif
 
 
#include <sys/types.h>
#include <sys/types.h>
 
 
#ifdef HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#include <unistd.h>
#endif
#endif
#if HAVE_SYS_STAT_H
#if HAVE_SYS_STAT_H
#include <sys/stat.h>
#include <sys/stat.h>
#endif
#endif
 
 
#include "libiberty.h"
#include "libiberty.h"
 
 
#ifndef S_ISLNK
#ifndef S_ISLNK
#ifdef S_IFLNK
#ifdef S_IFLNK
#define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
#define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
#else
#else
#define S_ISLNK(m) 0
#define S_ISLNK(m) 0
#define lstat stat
#define lstat stat
#endif
#endif
#endif
#endif
 
 
int
int
unlink_if_ordinary (const char *name)
unlink_if_ordinary (const char *name)
{
{
  struct stat st;
  struct stat st;
 
 
  if (lstat (name, &st) == 0
  if (lstat (name, &st) == 0
      && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode)))
      && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode)))
    return unlink (name);
    return unlink (name);
 
 
  return 1;
  return 1;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.