Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
fa0e429b
Commit
fa0e429b
authored
Nov 24, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
isatty() requires <unistd.h>
Reported-by:
KO Myung-Hun
<
komh78@gmail.com
>
parent
1c707713
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
src/config/help.c
src/config/help.c
+1
-0
src/libvlc.c
src/libvlc.c
+3
-0
No files found.
src/config/help.c
View file @
fa0e429b
...
...
@@ -38,6 +38,7 @@ static void PauseConsole (void);
#else
# define ShowConsole() (void)0
# define PauseConsole() (void)0
# include <unistd.h>
#endif
static
void
Help
(
vlc_object_t
*
,
const
char
*
);
...
...
src/libvlc.c
View file @
fa0e429b
...
...
@@ -52,6 +52,9 @@
#ifdef HAVE_LOCALE_H
# include <locale.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
/* isatty() */
#endif
#ifdef HAVE_DBUS
/* used for one-instance mode */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment