aboutsummaryrefslogtreecommitdiffstats
path: root/xmalloc.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-17 17:44:12 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-17 17:44:12 +0000
commitaec15b99bf6b340227895ecfa6136e9d638c701a (patch)
tree54ea8d79169dd127d239a7f304c1007eb473ea6f /xmalloc.c
parent6acb0b4730875ea953f04df5fa6c5680fd98ca09 (diff)
downloadfetchmail-aec15b99bf6b340227895ecfa6136e9d638c701a.tar.gz
fetchmail-aec15b99bf6b340227895ecfa6136e9d638c701a.tar.bz2
fetchmail-aec15b99bf6b340227895ecfa6136e9d638c701a.zip
Remove all those obnoxious block comments.
svn path=/trunk/; revision=345
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 */