mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Sort function prototypes.
This commit is contained in:
parent
62238a6791
commit
464ff7d223
1 changed files with 3 additions and 3 deletions
|
|
@ -286,15 +286,15 @@ __BEGIN_DECLS
|
|||
int open(const char *, int, ...);
|
||||
int creat(const char *, mode_t);
|
||||
int fcntl(int, int, ...);
|
||||
#if __BSD_VISIBLE
|
||||
int flock(int, int);
|
||||
#endif
|
||||
#if __BSD_VISIBLE || __POSIX_VISIBLE >= 200809
|
||||
int openat(int, const char *, int, ...);
|
||||
#endif
|
||||
#if __BSD_VISIBLE || __POSIX_VISIBLE >= 200112
|
||||
int posix_fallocate(int, off_t, off_t);
|
||||
#endif
|
||||
#if __BSD_VISIBLE
|
||||
int flock(int, int);
|
||||
#endif
|
||||
__END_DECLS
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue