Remove now-pointless SIZE_MAX stanza from OpenBSD_malloc_linux

This commit is contained in:
Nick Mathewson 2014-09-09 12:09:18 -04:00
parent 1eea7a68ed
commit 40b7dfaed2
1 changed files with 0 additions and 10 deletions

View File

@ -1961,16 +1961,6 @@ realloc(void *ptr, size_t size)
return (r);
}
#ifndef SIZE_MAX
//#if defined(__i386__)||defined(__arm__)||defined(__powerpc__)
//#define SIZE_MAX 0xffffffff
//#endif
//#if defined(__x86_64__)
//#define SIZE_MAX 0xffffffffffffffff
//#endif
#define SIZE_MAX SIZE_MAX
#endif
void *
calloc(size_t num, size_t size)
{