scripts

misc scripts and tools
git clone git://git.2f30.org/scripts
Log | Files | Refs

commit 388ef950bf8ef5239c30e27c344ebb64592927f4
parent e4291ba53485c8ed5cce851d50061f538e3dfd9f
Author: sin <sin@2f30.org>
Date:   Tue, 30 Jul 2013 10:48:18 +0100

Inform the user of not implemented functions

Diffstat:
Malloc.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/alloc.c b/alloc.c @@ -151,5 +151,6 @@ malloc_size(void *p) int posix_memalign(void **ptr, size_t alignment, size_t size) { + fprintf(stderr, "%s: not implemented\n", __func__); abort(); }