mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
Update Gnulib to v0.1-1157-gb03f418.
This commit is contained in:
parent
69ca2bb221
commit
7e641595cd
397 changed files with 1995 additions and 1095 deletions
|
@ -1,6 +1,6 @@
|
|||
/* Determine whether two stat buffers refer to the same file.
|
||||
/* Determine whether two stat buffers are known to refer to the same file.
|
||||
|
||||
Copyright (C) 2006, 2009-2016 Free Software Foundation, Inc.
|
||||
Copyright (C) 2006, 2009-2017 Free Software Foundation, Inc.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
|
@ -24,6 +24,10 @@
|
|||
&& (a).st_ino[1] == (b).st_ino[1] \
|
||||
&& (a).st_ino[2] == (b).st_ino[2] \
|
||||
&& (a).st_dev == (b).st_dev)
|
||||
# elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
|
||||
/* On MinGW, struct stat lacks necessary info, so always return 0.
|
||||
Callers can use !a.st_ino to deduce that the information is unknown. */
|
||||
# define SAME_INODE(a, b) 0
|
||||
# else
|
||||
# define SAME_INODE(a, b) \
|
||||
((a).st_ino == (b).st_ino \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue