diff options
-rw-r--r-- | camel/ChangeLog | 2 | ||||
-rw-r--r-- | camel/camel-stream-process.c | 10 |
2 files changed, 7 insertions, 5 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index b02f569277..08c4dd9a05 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,7 @@ 2004-02-24 Jeffrey Stedfast <fejj@ximian.com> + * camel-stream-process.c: #include <signal.h>, we don't need limits.h + * camel-store.c (camel_store_folder_uri_equal): New function to do what camel_store_uri_cmp() was supposed to do. diff --git a/camel/camel-stream-process.c b/camel/camel-stream-process.c index 293cd2b69f..8dc5b33ea1 100644 --- a/camel/camel-stream-process.c +++ b/camel/camel-stream-process.c @@ -27,17 +27,17 @@ #include <config.h> #endif +#include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <sys/types.h> #include <sys/socket.h> #include <sys/ioctl.h> #include <sys/wait.h> -#include <fcntl.h> #include <unistd.h> -#include <stdlib.h> +#include <signal.h> +#include <fcntl.h> #include <errno.h> -#include <limits.h> -#include <stdio.h> -#include <string.h> #include "camel-stream-process.h" #include "camel-file-utils.h" |