diff options
author | Mattias Andrée <maandree@kth.se> | 2021-02-26 18:23:22 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-02-26 18:23:22 +0100 |
commit | e4dbd976e9522d5fa17139126edf38d654f45b1d (patch) | |
tree | c094b08baa9f548221f8d72a3942ba4375523e24 /aligned_memdup.c | |
parent | m (diff) | |
download | libsimple-e4dbd976e9522d5fa17139126edf38d654f45b1d.tar.gz libsimple-e4dbd976e9522d5fa17139126edf38d654f45b1d.tar.bz2 libsimple-e4dbd976e9522d5fa17139126edf38d654f45b1d.tar.xz |
Fix tests and libsimple_arraycpy and libsimple_arraymove1.2
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'aligned_memdup.c')
-rw-r--r-- | aligned_memdup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/aligned_memdup.c b/aligned_memdup.c index ec06c38..7b2ca71 100644 --- a/aligned_memdup.c +++ b/aligned_memdup.c @@ -17,6 +17,7 @@ libsimple_aligned_memdup(const void *s, size_t alignment, size_t n) #else #include "test.h" +#undef memset int main(void) @@ -26,7 +27,7 @@ main(void) void *p = libsimple_aligned_memdup(s, 4, 5); assert(p); assert(p != s); - assert(!((uintptr_t)s % 4)); + assert(!((uintptr_t)p % 4)); if (have_custom_malloc()) { assert((info = get_allocinfo(p))); assert(info->size == 8); |