Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/crypto/external/bsd/openssh/dist/xmalloc.h,v rcsdiff: /ftp/cvs/cvsroot/src/crypto/external/bsd/openssh/dist/xmalloc.h,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.9 retrieving revision 1.9.4.1 diff -u -p -r1.9 -r1.9.4.1 --- src/crypto/external/bsd/openssh/dist/xmalloc.h 2017/04/18 18:41:46 1.9 +++ src/crypto/external/bsd/openssh/dist/xmalloc.h 2017/12/04 10:55:19 1.9.4.1 @@ -1,5 +1,5 @@ -/* $NetBSD: xmalloc.h,v 1.9 2017/04/18 18:41:46 christos Exp $ */ -/* $OpenBSD: xmalloc.h,v 1.16 2016/02/15 09:47:49 dtucker Exp $ */ +/* $NetBSD: xmalloc.h,v 1.9.4.1 2017/12/04 10:55:19 snj Exp $ */ +/* $OpenBSD: xmalloc.h,v 1.17 2017/05/31 09:15:42 deraadt Exp $ */ /* * Author: Tatu Ylonen @@ -21,6 +21,7 @@ void ssh_malloc_init(void); void *xmalloc(size_t); void *xcalloc(size_t, size_t); void *xreallocarray(void *, size_t, size_t); +void *xrecallocarray(void *, size_t, size_t, size_t); char *xstrdup(const char *); int xasprintf(char **, const char *, ...) __attribute__((__format__ (printf, 2, 3)))