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
01f235bc
...
01f235bcc9d3799c129d9a10de64a10f6f6b00b6
authored
2001-08-03 02:31:38 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Not all systems have <sys/fcntl.h>, changed to use HAVE_FCNTL_H.
1 parent
99f11b70
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
mail/util.c
mail/util.c
View file @
01f235b
...
...
@@ -22,7 +22,12 @@
# include <termios.h>
#endif
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#else
# include <sys/fcntl.h>
#endif
typedef
struct
_node
{
/* for the msglist expander */
...
...
Please
register
or
sign in
to post a comment