[BACK]Return to xmalloc.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/xmalloc.c between version 1.32 and 1.33

version 1.32, 2015/04/24 01:36:01 version 1.33, 2016/02/15 09:47:49
Line 22 
Line 22 
 #include "xmalloc.h"  #include "xmalloc.h"
 #include "log.h"  #include "log.h"
   
   void
   ssh_malloc_init(void)
   {
           extern char *malloc_options;
   
           malloc_options = "S";
   }
   
 void *  void *
 xmalloc(size_t size)  xmalloc(size_t size)
 {  {

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33