diff options
author | Lennart Poettering <lennart@poettering.net> | 2019-03-13 12:02:21 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2019-03-13 12:16:43 +0100 |
commit | 0a9707187b7d7b02751b068336fa27757797d44c (patch) | |
tree | d3273629ef7ef4f45d3153c83ca8e81a814c92b9 /src/test/test-siphash24.c | |
parent | util: split out some stuff into a new file limits-util.[ch] (diff) | |
download | systemd-0a9707187b7d7b02751b068336fa27757797d44c.tar.xz systemd-0a9707187b7d7b02751b068336fa27757797d44c.zip |
util: split out memcmp()/memset() related calls into memory-util.[ch]
Just some source rearranging.
Diffstat (limited to 'src/test/test-siphash24.c')
-rw-r--r-- | src/test/test-siphash24.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-siphash24.c b/src/test/test-siphash24.c index 218200e480..6ae272fa94 100644 --- a/src/test/test-siphash24.c +++ b/src/test/test-siphash24.c @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: LGPL-2.1+ */ +#include "memory-util.h" #include "siphash24.h" -#include "util.h" #define ITERATIONS 10000000ULL |