diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2016-01-02 16:20:25 -0500 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-01-06 23:54:29 +0100 |
commit | 16fc66a4faf631fffa518eb7806ec70e03c78f63 (patch) | |
tree | c46309e1618832d4656b023fce05f61a0016b887 /libc/sysdeps/linux/common/Makefile.in | |
parent | a6975db114cce6484aa83f107d4496cd6045fd26 (diff) |
extra/Configs/Config.in: add syncfs() to Linux-specific functions
syncfs() was recently added (commit dfa593d4d). But man sync(2) specifies
that syncfs() is Linux-specific. This was overlooked in the original
commit so we add it to the set of Linux-specific functions supported by
uClibc.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'libc/sysdeps/linux/common/Makefile.in')
-rw-r--r-- | libc/sysdeps/linux/common/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/Makefile.in b/libc/sysdeps/linux/common/Makefile.in index ade0ac3e2..887dc3d62 100644 --- a/libc/sysdeps/linux/common/Makefile.in +++ b/libc/sysdeps/linux/common/Makefile.in @@ -56,6 +56,7 @@ CSRC-$(UCLIBC_LINUX_SPECIFIC) += \ swapoff.c \ swapon.c \ sync_file_range.c \ + syncfs.c \ sysctl.c \ sysinfo.c \ tee.c \ |