Browse Source

add legacy function valloc

it was already declared in stdlib.h, but not defined anywhere.
Rich Felker 11 years ago
parent
commit
2f820f3b1f
1 changed files with 8 additions and 0 deletions
  1. 8 0
      src/legacy/valloc.c

+ 8 - 0
src/legacy/valloc.c

@@ -0,0 +1,8 @@
+#define _BSD_SOURCE
+#include <stdlib.h>
+#include <limits.h>
+
+void *valloc(size_t size)
+{
+	return memalign(PAGE_SIZE, size);
+}