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

Diff for /src/usr.bin/ssh/xmalloc.h between version 1.6 and 1.7

version 1.6, 2001/06/26 06:33:07 version 1.7, 2001/06/26 17:27:25
Line 19 
Line 19 
 #ifndef XMALLOC_H  #ifndef XMALLOC_H
 #define XMALLOC_H  #define XMALLOC_H
   
 /* Like malloc, but calls fatal() if out of memory. */  void    *xmalloc(size_t);
 void   *xmalloc(size_t);  void    *xrealloc(void *, size_t);
   void     xfree(void *);
 /* Like realloc, but calls fatal() if out of memory. */  char    *xstrdup(const char *);
 void   *xrealloc(void *, size_t);  
   
 /* Frees memory allocated using xmalloc or xrealloc. */  
 void    xfree(void *);  
   
 /* Allocates memory using xmalloc, and copies the string into that memory. */  
 char   *xstrdup(const char *);  
   
 #endif                          /* XMALLOC_H */  #endif                          /* XMALLOC_H */

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7