Merge "Use a separate config.h for config like defines."

This commit is contained in:
Christopher Ferris
2014-06-17 18:21:30 +00:00
committed by Gerrit Code Review
3 changed files with 28 additions and 9 deletions

View File

@@ -37,6 +37,7 @@
#include <stdint.h>
#include <stdlib.h>
#include "private/bionic_config.h"
#include "private/libc_logging.h"
#define HASHTABLE_SIZE 1543
@@ -61,12 +62,6 @@
#define Malloc(function) dl ## function
#endif
// valloc(3) and pvalloc(3) were removed from POSIX 2004. We do not include them
// for LP64, but the symbols remain in LP32 for binary compatibility.
#ifndef __LP64__
#define HAVE_DEPRECATED_MALLOC_FUNCS 1
#endif
// =============================================================================
// Structures
// =============================================================================