From 2ebb276929d2226c4c4e7496cd1d7b1b603197a0 Mon Sep 17 00:00:00 2001 From: cuz Date: Wed, 5 Jan 2005 21:28:54 +0000 Subject: [PATCH] Fixed a typo git-svn-id: svn://svn.cc65.org/cc65/trunk@3350 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/stdlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stdlib.h b/include/stdlib.h index 692448167..3ad7b97c0 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -62,7 +62,7 @@ void __fastcall__ free (void* block); /* Non standard memory management functions */ -void* __fastcall__ _aligned_malloc (size_t size, size_t alignment) +void* __fastcall__ _aligned_malloc (size_t size, size_t alignment); /* Allocate a block of memory with the given size, which is aligned to a * memory address that is a multiple of alignment. alignment MUST NOT be * zero and MUST be a power of two, otherwise a call to this function will -- 2.39.5