summaryrefslogtreecommitdiffstats
path: root/utils/aligned_malloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/aligned_malloc.h')
-rw-r--r--utils/aligned_malloc.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/utils/aligned_malloc.h b/utils/aligned_malloc.h
new file mode 100644
index 0000000..b3f43c9
--- /dev/null
+++ b/utils/aligned_malloc.h
@@ -0,0 +1,26 @@
+/* -*- mode: c; tab-width: 4; fill-column: 128 -*- */
+/* vi: set ts=4 tw=128: */
+
+/*
+aligned_malloc.h, Copyright (c) 2014 Dave Odell <dmo2118@gmail.com>
+
+Permission to use, copy, modify, distribute, and sell this software and its
+documentation for any purpose is hereby granted without fee, provided that
+the above copyright notice appear in all copies and that both that
+copyright notice and this permission notice appear in supporting
+documentation. No representations are made about the suitability of this
+software for any purpose. It is provided "as is" without express or
+implied warranty.
+*/
+
+#ifndef __ALIGNED_MALLOC_H__
+#define __ALIGNED_MALLOC_H__
+
+#include <stdlib.h>
+
+ /* This can't simply be named posix_memalign, since the real thing uses
+ free(), but this one can't. */
+ int aligned_malloc(void **ptr, unsigned alignment, size_t size);
+ void aligned_free(void *);
+
+#endif /* __ALIGNED_MALLOC_H__ */