=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/xmalloc.c,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- src/usr.bin/ssh/xmalloc.c 2015/04/24 01:36:01 1.32 +++ src/usr.bin/ssh/xmalloc.c 2016/02/15 09:47:49 1.33 @@ -1,4 +1,4 @@ -/* $OpenBSD: xmalloc.c,v 1.32 2015/04/24 01:36:01 deraadt Exp $ */ +/* $OpenBSD: xmalloc.c,v 1.33 2016/02/15 09:47:49 dtucker Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -21,6 +21,14 @@ #include "xmalloc.h" #include "log.h" + +void +ssh_malloc_init(void) +{ + extern char *malloc_options; + + malloc_options = "S"; +} void * xmalloc(size_t size)