]> Pileus Git - ~andy/fetchmail/blobdiff - xmalloc.c
Added IRIX.
[~andy/fetchmail] / xmalloc.c
index 6fab5be1096d36966a65569c55041d5196c19eba..2b343fe48558c6a075e548d34e63e5ba6aa1ab53 100644 (file)
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -1,14 +1,19 @@
 /*
  * xmalloc.c -- allocate space or die 
  *
+ * Copyright 1998 by Eric S. Raymond.
  * For license terms, see the file COPYING in this directory.
  */
 
-#include <config.h>
+#include "config.h"
 #include <stdio.h>
+#include <errno.h>
 #include <string.h>
-#include <sys/types.h>
+#if defined(STDC_HEADERS)
+#include  <stdlib.h>
+#endif
 #include "fetchmail.h"
+#include "i18n.h"
 
 #if defined(HAVE_VOIDPOINTER)
 #define XMALLOCTYPE void
 #endif
 
 XMALLOCTYPE *
-xmalloc (n)
-int n;
+xmalloc (int n)
 {
-  XMALLOCTYPE *p;
+    XMALLOCTYPE *p;
+
+    p = (XMALLOCTYPE *) malloc(n);
+    if (p == (XMALLOCTYPE *) 0)
+    {
+       report(stderr, _("malloc failed\n"));
+       exit(PS_UNDEFINED);
+    }
+    return(p);
+}
 
-  p = (XMALLOCTYPE *) malloc(n);
-  if (p == (XMALLOCTYPE *) 0) {
-    fputs("fetchmail: malloc failed\n",stderr);
-    exit(PS_UNDEFINED);
-  }
-  return(p);
+XMALLOCTYPE *
+xrealloc (XMALLOCTYPE *p, int n)
+{
+    if (p == 0)
+       return xmalloc (n);
+    p = (XMALLOCTYPE *) realloc(p, n);
+    if (p == (XMALLOCTYPE *) 0)
+    {
+       report(stderr, _("realloc failed\n"));
+       exit(PS_UNDEFINED);
+    }
+    return p;
 }
 
-char *xstrdup(s)
-char *s;
-{ 
-  char *p;
-  p = (char *) xmalloc(strlen(s)+1);
-  strcpy(p,s);
-  return p;
+char *xstrdup(const char *s)
+{
+    char *p;
+    p = (char *) xmalloc(strlen(s)+1);
+    strcpy(p,s);
+    return p;
 }
 
 /* xmalloc.c ends here */