os: Also add the aligned memory prototypes to the embedded section.

This commit is contained in:
José Fonseca 2010-02-03 12:57:49 +00:00
parent 6b424a0550
commit b724694f3a
1 changed files with 6 additions and 0 deletions

View File

@ -57,6 +57,12 @@ os_free(void *ptr);
void *
os_realloc(void *ptr, size_t old_size, size_t new_size);
void *
os_malloc_aligned(size_t size, uint alignment);
void
os_free_aligned(void *ptr);
#ifdef __cplusplus
}
#endif