]> diplodocus.org Git - nmh/blobdiff - sbr/getcpy.c
NEWS: Encourage nmh-announce subscription. Capitalise `Gmail'.
[nmh] / sbr / getcpy.c
index b073ae9d76ce94dd49672e32ec3416c8cc6df14b..42779e02617b13a13b63439cad53a7560a37237d 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
  * complete copyright information.
  */
 
-#include <h/mh.h>
-#include <h/utils.h>
+#include "h/mh.h"
+#include "getcpy.h"
+#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);