diff options
Diffstat (limited to 'xmalloc.c')
-rw-r--r-- | xmalloc.c | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -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 */ |