Index: trunk/Nebulous/nebclient/src/xmalloc.c
===================================================================
--- trunk/Nebulous/nebclient/src/xmalloc.c	(revision 4505)
+++ trunk/Nebulous/nebclient/src/xmalloc.c	(revision 4677)
@@ -2,7 +2,7 @@
  * xmalloc.c - malloc that can't fail
  *
- * Copyright (C) 2003  Robert Lupton
+ * Copyright (C) 2003-2005  Joshua Hoblitt, 2003  Robert Lupton
  *
- * $Id: xmalloc.c,v 1.2 2005-07-07 22:03:16 jhoblitt Exp $
+ * $Id: xmalloc.c,v 1.3 2005-07-30 02:45:31 jhoblitt Exp $
  */
 
@@ -15,6 +15,5 @@
  * Wrappers for malloc/free.  xmalloc cannot fail.
  */
-void *
-xmalloc(size_t n)
+void * xmalloc(size_t n)
 {
    void *ptr = malloc(n);
@@ -28,6 +27,5 @@
 }
 
-void *
-xrealloc(void *ptr, size_t size)
+void * xrealloc(void *ptr, size_t size)
 {
     void *newptr = realloc(ptr, size);
@@ -41,6 +39,5 @@
 }
  
-void
-xfree(void *ptr)
+void xfree(void *ptr)
 {
    free(ptr);
