summaryrefslogtreecommitdiff
path: root/include/memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/memory.h')
-rw-r--r--include/memory.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/include/memory.h b/include/memory.h
index 806c928..e8a3190 100644
--- a/include/memory.h
+++ b/include/memory.h
@@ -1,8 +1,7 @@
/*
- * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
- * memory.h: A header for the memory functions.
+ * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
*
- * Copyright (C) 2002 by the past and present ircd coders, and others.
+ * Copyright (c) 1997-2014 ircd-hybrid development team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,8 +17,11 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
- *
- * $Id$
+ */
+
+/*! \file memory.h
+ * \brief A header for the memory functions.
+ * \version $Id$
*/
#ifndef _I_MEMORY_H
@@ -28,7 +30,6 @@
#include "ircd_defs.h"
extern void outofmemory(void);
-
extern void *MyMalloc(size_t);
extern void *MyRealloc(void *, size_t);
extern void MyFree(void *);