]> git.eshelyaron.com Git - emacs.git/commitdiff
[HAVE_UNISTD_H]: Include unistd.h.
authorRichard M. Stallman <rms@gnu.org>
Thu, 17 Jul 1997 23:49:47 +0000 (23:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 17 Jul 1997 23:49:47 +0000 (23:49 +0000)
lib-src/fakemail.c

index 1deeec352b26336c5eafc4a738992ff9b7be4f82..73898c6fb87d3b964e99431cb9d4862b880cb697 100644 (file)
@@ -61,6 +61,11 @@ main ()
 #include <ctype.h>
 #include <time.h>
 #include <pwd.h>
+
+/* This is to declare cuserid.  */
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
 \f
 /* Type definitions */
 
@@ -368,9 +373,9 @@ make_file_preface ()
   user_length = strlen (temp);
   the_user = alloc_string (user_length + 1);
   strcpy (the_user, temp);
-  the_string = alloc_string (3 + prefix_length +
-                            user_length +
-                            date_length);
+  the_string = alloc_string (3 + prefix_length
+                            + user_length
+                            date_length);
   temp = the_string;
   strcpy (temp, FROM_PREFIX);
   temp = &temp[prefix_length];