[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.5 and 1.5.4.1

version 1.5, 2000/09/07 20:27:56 version 1.5.4.1, 2001/09/27 19:03:56
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 size);  void    *xrealloc(void *, size_t);
   void     xfree(void *);
 /* Like realloc, but calls fatal() if out of memory. */  char    *xstrdup(const char *);
 void   *xrealloc(void *ptr, size_t new_size);  
   
 /* Frees memory allocated using xmalloc or xrealloc. */  
 void    xfree(void *ptr);  
   
 /* Allocates memory using xmalloc, and copies the string into that memory. */  
 char   *xstrdup(const char *str);  
   
 #endif                          /* XMALLOC_H */  #endif                          /* XMALLOC_H */

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.5.4.1