]> granicus.if.org Git - neomutt/commitdiff
To compile on SunOs 4.1.4, the order of two includes needs to be
authorThomas Roessler <roessler@does-not-exist.org>
Mon, 10 Jan 2000 10:42:40 +0000 (10:42 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Mon, 10 Jan 2000 10:42:40 +0000 (10:42 +0000)
switched (<sys/resource.h> contains a struct timeval.)

From Mark Seiden <mis@seiden.com>.

pgp.c

diff --git a/pgp.c b/pgp.c
index 94129f53ae53bc3f162a4591faa33b05f5163329..31305b673a39352a4cc288ca7a8d2e17e38a6f41 100644 (file)
--- a/pgp.c
+++ b/pgp.c
 #include <errno.h>
 #include <ctype.h>
 
-#ifdef HAVE_SYS_RESOURCE_H
-# include <sys/resource.h>
-#endif
-
 #ifdef HAVE_SYS_TIME_H
 # include <sys/time.h>
 #endif
 
+#ifdef HAVE_SYS_RESOURCE_H
+# include <sys/resource.h>
+#endif
+
 #ifdef _PGPPATH