aboutsummaryrefslogtreecommitdiffstats
path: root/xmalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'xmalloc.c')
-rw-r--r--xmalloc.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/xmalloc.c b/xmalloc.c
index bfa5b463..6fab5be1 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -1,16 +1,9 @@
/*
+ * xmalloc.c -- allocate space or die
+ *
* For license terms, see the file COPYING in this directory.
*/
-/***********************************************************************
- module: xmalloc.c
- project: fetchmail
- programmer: Carl Harris, ceharris@mal.com
- description: malloc wrapper.
-
- ***********************************************************************/
-
-
#include <config.h>
#include <stdio.h>
#include <string.h>
@@ -45,3 +38,5 @@ char *s;
strcpy(p,s);
return p;
}
+
+/* xmalloc.c ends here */