diff options
| author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-10-03 10:32:34 +0200 |
|---|---|---|
| committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-10-03 10:32:34 +0200 |
| commit | 4b9545f19e8ae9b232ca1083cff8140dc24390f6 (patch) | |
| tree | 4c1b3301bebf65b781223eb6942a2dae6aefd903 /src/basic/string-util.h | |
| parent | 8bdaf088ca22c4c12aee86e3a5e46998d042e21b (diff) | |
| download | systemd-4b9545f19e8ae9b232ca1083cff8140dc24390f6.tar.gz | |
build-sys: change all HAVE_DECL_ macros to HAVE_
This is a legacy of autotools, where one detection routine used a different
prefix then the others.
$ git grep -e HAVE_DECL_ -l|xargs sed -i s/HAVE_DECL_/HAVE_/g
Diffstat (limited to 'src/basic/string-util.h')
| -rw-r--r-- | src/basic/string-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/string-util.h b/src/basic/string-util.h index c511aeee68..4c94b182c1 100644 --- a/src/basic/string-util.h +++ b/src/basic/string-util.h @@ -189,7 +189,7 @@ static inline void *memmem_safe(const void *haystack, size_t haystacklen, const return memmem(haystack, haystacklen, needle, needlelen); } -#if !HAVE_DECL_EXPLICIT_BZERO +#if !HAVE_EXPLICIT_BZERO void explicit_bzero(void *p, size_t l); #endif |
