Remove sys/sysctl.h on linux platform

This include is useless and can be removed.
This syscall has been strongly deprecated for ages and the plugin doesn't use it any more.  On old architectures, this include is benign as long as it's unused, on new ones (such as x32) it results in a build failure.
Fix bug #11477
master
Adam Borowski 2017-06-06 23:25:29 +02:00 committed by Romain B
parent 2335737525
commit 3c94964347
1 changed files with 0 additions and 1 deletions

View File

@ -170,7 +170,6 @@
#elif __linux__ /* L I N U X */ #elif __linux__ /* L I N U X */
# include <stdio.h> # include <stdio.h>
# include <sys/param.h> # include <sys/param.h>
# include <sys/sysctl.h>
# include <stdlib.h> # include <stdlib.h>
# include <stdarg.h> # include <stdarg.h>
# include <unistd.h> # include <unistd.h>