[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.9 and 1.10

version 1.9, 2002/06/19 00:27:55 version 1.10, 2006/03/25 00:05:41
Line 20 
Line 20 
 #define XMALLOC_H  #define XMALLOC_H
   
 void    *xmalloc(size_t);  void    *xmalloc(size_t);
   void    *xcalloc(size_t, size_t);
 void    *xrealloc(void *, size_t);  void    *xrealloc(void *, size_t);
 void     xfree(void *);  void     xfree(void *);
 char    *xstrdup(const char *);  char    *xstrdup(const char *);
   int      xasprintf(char **, const char *, ...)
                   __attribute__((__format__ (printf, 2, 3)))
                   __attribute__((__nonnull__ (2)));
   
 #endif                          /* XMALLOC_H */  #endif                          /* XMALLOC_H */

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10