preparing for release of 2.0.14
[rsync/rsync.git] / util.c
diff --git a/util.c b/util.c
index b95e0b4..6470bf9 100644 (file)
--- a/util.c
+++ b/util.c
@@ -553,3 +553,9 @@ int slprintf(char *str, int n, char *format, ...)
        return ret;
 }
 
+
+void *Realloc(void *p, int size)
+{
+       if (!p) return (void *)malloc(size);
+       return (void *)realloc(p, size);
+}