]> diplodocus.org Git - nmh/blobdiff - sbr/getcpy.c
Various IMAP protocol improvements
[nmh] / sbr / getcpy.c
index b073ae9d76ce94dd49672e32ec3416c8cc6df14b..003971b2c58a9880aa28988250b5ba02135e0d44 100644 (file)
@@ -1,5 +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
@@ -14,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);