delete unused indludes in sersock

This commit is contained in:
Edward Emelianov 2022-01-24 09:39:18 +03:00
parent 8999f83c22
commit 6e19298249
3 changed files with 0 additions and 17 deletions

View File

@ -17,11 +17,8 @@
*/ */
#include <assert.h> #include <assert.h>
#include <math.h>
#include <stdarg.h> #include <stdarg.h>
#include <stdio.h> #include <stdio.h>
#include <string.h>
#include <strings.h>
#include "cmdlnopts.h" #include "cmdlnopts.h"
#include "usefull_macros.h" #include "usefull_macros.h"

View File

@ -16,17 +16,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <arpa/inet.h>
#include <limits.h>
#include <netdb.h>
#include <pthread.h>
#include <signal.h> #include <signal.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <sys/prctl.h> #include <sys/prctl.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/wait.h> #include <sys/wait.h>
#include <usefull_macros.h> #include <usefull_macros.h>

View File

@ -16,19 +16,12 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <arpa/inet.h>
#include <limits.h>
#include <netdb.h> #include <netdb.h>
#include <poll.h> #include <poll.h>
#include <signal.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/un.h> // unix socket #include <sys/un.h> // unix socket
#include <usefull_macros.h>
#include "cmdlnopts.h" #include "cmdlnopts.h"
#include "sersock.h" #include "sersock.h"