[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.4.2 and 1.6

version 1.5.4.2, 2002/03/09 00:20:45 version 1.6, 2001/06/26 06:33:07
Line 1 
Line 1 
 /*      $OpenBSD$       */  
   
 /*  /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>   * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland   * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
Line 16 
Line 14 
  * called by a name other than "ssh" or "Secure Shell".   * called by a name other than "ssh" or "Secure Shell".
  */   */
   
   /* RCSID("$OpenBSD$"); */
   
 #ifndef XMALLOC_H  #ifndef XMALLOC_H
 #define XMALLOC_H  #define XMALLOC_H
   
 void    *xmalloc(size_t);  /* Like malloc, but calls fatal() if out of memory. */
 void    *xrealloc(void *, size_t);  void   *xmalloc(size_t);
 void     xfree(void *);  
 char    *xstrdup(const char *);  /* Like realloc, but calls fatal() if out of memory. */
   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.5.4.2  
changed lines
  Added in v.1.6