Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
eb80f04f
Commit
eb80f04f
authored
14 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
Fix for compiler warning about function prototype in pty.c.
parent
1b20d3d6
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/pty.c
+4
-2
4 additions, 2 deletions
src/pty.c
with
4 additions
and
2 deletions
src/pty.c
+
4
−
2
View file @
eb80f04f
...
...
@@ -278,8 +278,10 @@ OpenPTY(ttyn)
char
**
ttyn
;
{
int
f
;
char
*
m
,
*
ptsname
();
int
unlockpt
__ARGS
((
int
)),
grantpt
__ARGS
((
int
));
char
*
m
;
char
*
(
ptsname
__ARGS
((
int
)));
int
unlockpt
__ARGS
((
int
));
int
grantpt
__ARGS
((
int
));
RETSIGTYPE
(
*
sigcld
)
__ARGS
(
SIGPROTOARG
);
/* used for opening a new pty-pair: */
static
char
TtyName
[
32
];
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment