diff options
author | Lukasz Majewski <lukma@denx.de> | 2020-10-22 13:09:00 +0200 |
---|---|---|
committer | Lukasz Majewski <lukma@denx.de> | 2020-11-04 11:34:58 +0100 |
commit | bb0719a80d2f1733d7adcdf326fc91aaf88db167 (patch) | |
tree | 5e822de1706b37d7f0ad503afe76a73d1b04adff /sysdeps/unix/sysv/linux/msgrcv.c | |
parent | fbb71eddb3b392982df12ba432d19f347c3799f6 (diff) | |
download | glibc-bb0719a80d2f1733d7adcdf326fc91aaf88db167.tar.gz glibc-bb0719a80d2f1733d7adcdf326fc91aaf88db167.tar.xz glibc-bb0719a80d2f1733d7adcdf326fc91aaf88db167.zip |
msg: Remove redundant #include <sys/msg.h> header
The #include <sys/msg.h> is redundant as we do not use message specific types for issuing syscalls to handle msg and shm. Only msgctl requires this header. Build tests: ./src/scripts/build-many-glibcs.py glibcs
Diffstat (limited to 'sysdeps/unix/sysv/linux/msgrcv.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/msgrcv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/msgrcv.c b/sysdeps/unix/sysv/linux/msgrcv.c index 95edc7a787..f3567033e2 100644 --- a/sysdeps/unix/sysv/linux/msgrcv.c +++ b/sysdeps/unix/sysv/linux/msgrcv.c @@ -16,7 +16,6 @@ License along with the GNU C Library; if not, see <https://www.gnu.org/licenses/>. */ -#include <sys/msg.h> #include <ipc_priv.h> #include <sysdep-cancel.h> |