diff options
author | Jim Meyering <meyering@redhat.com> | 2011-10-24 10:27:22 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-10-24 10:46:42 +0200 |
commit | f8ae6440eb8f943fd1f040d039753851824512d3 (patch) | |
tree | 05cb9f03621bc24789c880f5d1e0b069c4983953 /src | |
parent | 2ade806cf5740fa0ef0f7211699e5b4e7ce90464 (diff) | |
download | coreutils-f8ae6440eb8f943fd1f040d039753851824512d3.tar.xz |
rm: update gnulib to get an fts fix for Cygwin+NWFS/NcFsd file systems
* NEWS (Bug fixes): Mention it.
As far as we know, this fix affects only Cygwin with NWFS or NcFsd
file systems. See these:
http://git.sv.gnu.org/cgit/gnulib.git/commit/?id=71f13422f3e634
http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/28739
http://cygwin.com/ml/cygwin/2011-10/msg00365.html
* src/system.h (ENODATA): Remove fall-back definition, now that
gnulib provides one. Caught by the sc_prohibit_always-defined_macros
syntax-check rule.
Also remove now-irrelevant "Don't use bcopy..." comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/system.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/system.h b/src/system.h index 18ac0cc9f..19421a9dd 100644 --- a/src/system.h +++ b/src/system.h @@ -74,19 +74,8 @@ you must include <sys/types.h> before including this file # define makedev(maj, min) mkdev (maj, min) #endif -/* Don't use bcopy! Use memmove if source and destination may overlap, - memcpy otherwise. */ - #include <string.h> - #include <errno.h> - -/* Some systems don't define this; POSIX mentions it but says it is - obsolete, so gnulib does not provide it either. */ -#ifndef ENODATA -# define ENODATA (-1) -#endif - #include <stdbool.h> #include <stdlib.h> #include "version.h" |