mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-19 02:00:26 +02:00
Update Gnulib to v0.0-6827-g39c3009; use the `dirfd' module.
* m4/gnulib-cache.m4: Use `dirfd'. * libguile/filesys.c: Include Gnulib's <dirent.h> directly. (dirfd): Remove. Suggested by Bruno Haible <bruno@clisp.org>.
This commit is contained in:
parent
ad17b15512
commit
f0007cade0
305 changed files with 1230 additions and 537 deletions
|
@ -1,6 +1,6 @@
|
|||
/* Determine whether two stat buffers refer to the same file.
|
||||
|
||||
Copyright (C) 2006, 2009-2011 Free Software Foundation, Inc.
|
||||
Copyright (C) 2006, 2009-2012 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
|
||||
|
@ -18,8 +18,16 @@
|
|||
#ifndef SAME_INODE_H
|
||||
# define SAME_INODE_H 1
|
||||
|
||||
# define SAME_INODE(Stat_buf_1, Stat_buf_2) \
|
||||
((Stat_buf_1).st_ino == (Stat_buf_2).st_ino \
|
||||
&& (Stat_buf_1).st_dev == (Stat_buf_2).st_dev)
|
||||
# ifdef __VMS
|
||||
# define SAME_INODE(a, b) \
|
||||
((a).st_ino[0] == (b).st_ino[0] \
|
||||
&& (a).st_ino[1] == (b).st_ino[1] \
|
||||
&& (a).st_ino[2] == (b).st_ino[2] \
|
||||
&& (a).st_dev == (b).st_dev)
|
||||
# else
|
||||
# define SAME_INODE(a, b) \
|
||||
((a).st_ino == (b).st_ino \
|
||||
&& (a).st_dev == (b).st_dev)
|
||||
# endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue