diff options
author | Rich Felker <dalias@aerifal.cx> | 2020-09-28 18:47:13 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2020-10-14 20:27:12 -0400 |
commit | 557673603bb553e90106e7d14da6447a5ff82164 (patch) | |
tree | c689824388134be6f38046eb8e3927e736d6b515 /src/include | |
parent | 373376608394e4227b3a0027d06a8f0b39ddd40d (diff) | |
download | musl-557673603bb553e90106e7d14da6447a5ff82164.zip musl-557673603bb553e90106e7d14da6447a5ff82164.tar.gz musl-557673603bb553e90106e7d14da6447a5ff82164.tar.bz2 |
move aio implementation details to a proper internal header
also fix the lack of declaration (and thus hidden visibility) in
__stdio_close's use of __aio_close.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/unistd.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/unistd.h b/src/include/unistd.h index 1b4605c..7b52a92 100644 --- a/src/include/unistd.h +++ b/src/include/unistd.h @@ -8,7 +8,6 @@ extern char **__environ; hidden int __dup3(int, int, int); hidden int __mkostemps(char *, int, int); hidden int __execvpe(const char *, char *const *, char *const *); -hidden int __aio_close(int); hidden off_t __lseek(int, off_t, int); #endif |