Ver código fonte

add legacy function valloc

it was already declared in stdlib.h, but not defined anywhere.
Rich Felker 11 anos atrás
pai
commit
2f820f3b1f
1 arquivos alterados com 8 adições e 0 exclusões
  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);
+}