Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
5facdb70
...
5facdb707a15825608b07217cec73a20c5de3aee
authored
2005-11-15 15:13:16 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Add missing includes
1 parent
8ad91eec
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
4 deletions
examples/argcv.c
examples/mailcap.c
examples/url-parse.c
mail/send.c
mailbox/list.c
mh/mh_alias.l
mimeview/mimetypes.l
examples/argcv.c
View file @
5facdb7
...
...
@@ -26,7 +26,7 @@
#include <unistd.h>
#include <getline.h>
#include <mailutils/argcv.h>
#include <mailutils/err
or
.h>
#include <mailutils/err
no
.h>
int
main
(
int
argc
,
char
**
argv
)
...
...
examples/mailcap.c
View file @
5facdb7
...
...
@@ -16,6 +16,7 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301 USA */
#include <stdlib.h>
#include <stdio.h>
#include <mailutils/mailcap.h>
#include <mailutils/stream.h>
...
...
examples/url-parse.c
View file @
5facdb7
...
...
@@ -16,6 +16,7 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301 USA */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <mailutils/errno.h>
...
...
mail/send.c
View file @
5facdb7
...
...
@@ -21,6 +21,7 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <getline.h>
#include "mail.h"
...
...
mailbox/list.c
View file @
5facdb7
...
...
@@ -22,6 +22,7 @@
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <list0.h>
#include <iterator0.h>
...
...
mh/mh_alias.l
View file @
5facdb7
...
...
@@ -21,6 +21,7 @@
#include <mh_alias.h>
#include <sys/stat.h>
#include <ctype.h>
#include <mu_asprintf.h>
#ifndef isblank
# define isblank(c) ((c)==' ' || (c)=='\t')
...
...
mimeview/mimetypes.l
View file @
5facdb7
...
...
@@ -21,14 +21,15 @@
# include <config.h>
#endif
#include <unistd.h>
#include <stdio.h>
#include <sys/stat.h>
#include <mimeview.h>
#include <mimetypes-decl.h>
#include <mu_asprintf.h>
#include <unistd.h>
#include <sys/stat.h>
static int line_num;
static c
onst c
har *file_name;
static char *file_name;
static int file_name_alloc;
static struct obstack stack;
...
...
Please
register
or
sign in
to post a comment