Remove unused code
[mmh] / sbr / m_name.c
index bc3a681..d42c21b 100644 (file)
@@ -1,10 +1,10 @@
 /*
- * m_name.c -- return a message number as a string
- *
- * This code is Copyright (c) 2002, by the authors of nmh.  See the
- * COPYRIGHT file in the root directory of the nmh distribution for
- * complete copyright information.
- */
+** m_name.c -- return a message number as a string (in static memory)
+**
+** This code is Copyright (c) 2002, by the authors of nmh.  See the
+** COPYRIGHT file in the root directory of the nmh distribution for
+** complete copyright information.
+*/
 
 #include <h/mh.h>
 
@@ -12,11 +12,12 @@ static char name[BUFSIZ];
 
 
 char *
-m_name (int num)
+m_name(int num)
 {
-       if (num <= 0)
+       if (num <= 0) {
                return "?";
+       }
 
-       snprintf (name, sizeof(name), "%d", num);
+       snprintf(name, sizeof(name), "%d", num);
        return name;
 }