]> diplodocus.org Git - nmh/blobdiff - sbr/getcpy.c
Various IMAP protocol improvements
[nmh] / sbr / getcpy.c
index 32c8db437ff223317af65b877f7f293db34f7cc2..003971b2c58a9880aa28988250b5ba02135e0d44 100644 (file)
@@ -1,6 +1,4 @@
-
-/*
- * getcpy.c -- copy a string in managed memory
+/* getcpy.c -- copy a string in managed memory
  *
  * THIS IS OBSOLETE.  NEED TO REPLACE ALL OCCURRENCES
  * OF GETCPY WITH STRDUP.  BUT THIS WILL REQUIRE
@@ -15,7 +13,8 @@
 #include <h/utils.h>
 
 /* Return malloc'd copy of str, or of "" if NULL, exit on failure. */
-char *getcpy(const char *str)
+char *
+getcpy(const char *str)
 {
     if (str)
         return mh_xstrdup(str);