os: Also add the aligned memory prototypes to the embedded section.
authorJosé Fonseca <jfonseca@vmware.com>
Wed, 3 Feb 2010 12:57:49 +0000 (12:57 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Wed, 3 Feb 2010 12:57:49 +0000 (12:57 +0000)
src/gallium/auxiliary/os/os_memory.h

index f18d5a3d9b9e37e56ba26a85989a120accffe8db..704aa0762be625700e25de2b626030f038c90a57 100644 (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