mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Add openat() to compat.
This commit is contained in:
8
compat.h
8
compat.h
@ -243,7 +243,13 @@ int unsetenv(const char *);
|
||||
|
||||
#ifndef HAVE_CFMAKERAW
|
||||
/* cfmakeraw.c */
|
||||
void cfmakeraw(struct termios *tio);
|
||||
void cfmakeraw(struct termios *);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_OPENAT
|
||||
/* openat.c */
|
||||
#define AT_FDCWD -100
|
||||
int openat(int, const char *, int, ...);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_GETOPT
|
||||
|
Reference in New Issue
Block a user