[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.2.2

version 1.5, 2000/09/07 20:27:56 version 1.5.2.2, 2002/03/08 17:04:44
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 14 
Line 16 
  * 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
   
 /* 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.2.2