[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.12 and 1.13

version 1.12, 2006/03/25 22:22:43 version 1.13, 2006/08/03 03:34:42
Line 16 
Line 16 
  * called by a name other than "ssh" or "Secure Shell".   * called by a name other than "ssh" or "Secure Shell".
  */   */
   
 #ifndef XMALLOC_H  
 #define XMALLOC_H  
   
 void    *xmalloc(size_t);  void    *xmalloc(size_t);
 void    *xcalloc(size_t, size_t);  void    *xcalloc(size_t, size_t);
 void    *xrealloc(void *, size_t, size_t);  void    *xrealloc(void *, size_t, size_t);
Line 27 
Line 24 
 int      xasprintf(char **, const char *, ...)  int      xasprintf(char **, const char *, ...)
                 __attribute__((__format__ (printf, 2, 3)))                  __attribute__((__format__ (printf, 2, 3)))
                 __attribute__((__nonnull__ (2)));                  __attribute__((__nonnull__ (2)));
   
 #endif                          /* XMALLOC_H */  

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13