Skip to content

Commit

Permalink
Move tcgetpgrp and tcsetpgrp decls to unistd.h (#996) (#997)
Browse files Browse the repository at this point in the history
  • Loading branch information
bttelle authored Dec 9, 2023
1 parent 076e0bf commit b0cced8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions libc/calls/calls.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ int sigignore(int);
int siginterrupt(int, int);
int symlink(const char *, const char *);
int symlinkat(const char *, int, const char *);
int tcgetpgrp(int);
int tcsetpgrp(int, int);
int truncate(const char *, int64_t);
int ttyname_r(int, char *, size_t);
int unlink(const char *);
Expand Down
2 changes: 0 additions & 2 deletions libc/calls/termios.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ int posix_openpt(int) __wur;

int tcdrain(int);
int tcgetsid(int);
int tcgetpgrp(int);
int tcflow(int, int);
int tcflush(int, int);
int tcsetsid(int, int);
int tcsetpgrp(int, int);
int tcsendbreak(int, int);
void cfmakeraw(struct termios *);
int cfsetspeed(struct termios *, uint32_t);
Expand Down

0 comments on commit b0cced8

Please sign in to comment.