diff options
Diffstat (limited to 'src/xine-utils/utils.c')
-rw-r--r-- | src/xine-utils/utils.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/xine-utils/utils.c b/src/xine-utils/utils.c index d9eb7fb3f..1c267b800 100644 --- a/src/xine-utils/utils.c +++ b/src/xine-utils/utils.c @@ -274,18 +274,6 @@ void *xine_xcalloc(size_t nmemb, size_t size) { return ptr; } -void *xine_xmalloc_aligned(size_t alignment, size_t size, void **base) { - - char *ptr; - - *base = ptr = xine_xmalloc (size+alignment); - - while ((size_t) ptr % alignment) - ptr++; - - return ptr; -} - #ifdef WIN32 /* * Parse command line with Windows XP syntax and copy the command (argv[0]). |