diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-02-03 21:34:34 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-02-03 21:34:34 +0000 |
commit | 2b9a84b4dca09d40670514f6e253d7fb1671cb44 (patch) | |
tree | 7615224c7ffcc4ed7c6249b8f560d3dd42175d31 /src | |
parent | c10a2c64d0227a0404d5abb4223c80c8c936a24a (diff) | |
download | coreutils-2b9a84b4dca09d40670514f6e253d7fb1671cb44.tar.xz |
Include "memrchr.h".
(memrchr) [!HAVE_DECL_MEMRCHR]: Remove decl.
Diffstat (limited to 'src')
-rw-r--r-- | src/system.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/system.h b/src/system.h index ed675f3f3..1a4889345 100644 --- a/src/system.h +++ b/src/system.h @@ -1,5 +1,5 @@ /* system-dependent definitions for fileutils, textutils, and sh-utils packages. - Copyright (C) 1989, 1991-2004 Free Software Foundation, Inc. + Copyright (C) 1989, 1991-2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -114,9 +114,7 @@ struct utimbuf memcpy otherwise. */ #include <string.h> -#if ! HAVE_DECL_MEMRCHR -void *memrchr (const void *, int, size_t); -#endif +#include "memrchr.h" #include <errno.h> |