This commit is contained in:
seta75D
2021-10-11 19:38:01 -03:00
commit 7c4988eac0
12567 changed files with 3198619 additions and 0 deletions

39
lib/libmapmalloc/malloc_debug.c Executable file
View File

@@ -0,0 +1,39 @@
/*
* Copyright (c) 1991, Sun Microsytems, Inc.
*/
#ident "@(#)malloc_debug.c 1.1 91/07/19 SMI"
/*
* malloc_debug(level) - empty routine
*/
int
malloc_debug(level)
int level;
{
return(1);
}
/*
* malloc_verify() - empty routine
*/
int
malloc_verify()
{
return(1);
}
/*
* mallocmap() - empty routine
*/
void
mallocmap()
{
;
}