diff options
author | Jeff Layton <jlayton@samba.org> | 2012-07-06 11:48:18 -0400 |
---|---|---|
committer | Jeff Layton <jlayton@samba.org> | 2012-07-10 13:17:00 -0400 |
commit | a8611e25d44211cd57a91dce4fe7d7a7ad7534d4 (patch) | |
tree | b7167339fc06eaa1a168f4f88813b9585dd26cc8 /replace.h | |
parent | b7bea5254443cb121b0cf03a64b123b85d7f9fbb (diff) | |
download | cifs-utils-a8611e25d44211cd57a91dce4fe7d7a7ad7534d4.tar.gz cifs-utils-a8611e25d44211cd57a91dce4fe7d7a7ad7534d4.tar.bz2 cifs-utils-a8611e25d44211cd57a91dce4fe7d7a7ad7534d4.zip |
replace: remove bzero() redefinition from replace.h
I borrowed replace.h from samba when I split off the package, and we
have a ton of definitions in there that we don't really need. This is
one of them and it causes a warning when we build on RHEL5.
Reported-by: Andreas Schneider <asn@samba.org>
Signed-off-by: Jeff Layton <jlayton@samba.org>
Diffstat (limited to 'replace.h')
-rw-r--r-- | replace.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -269,10 +269,6 @@ int rep_ftruncate(int,off_t); int rep_initgroups(char *name, gid_t id); #endif -#if !defined(HAVE_BZERO) && defined(HAVE_MEMSET) -#define bzero(a,b) memset((a),'\0',(b)) -#endif - #ifndef HAVE_DLERROR #define dlerror rep_dlerror char *rep_dlerror(void); |