1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:37:34 +00:00

LibC: Move struct timeval to sys/time.h. #POSIX

This commit is contained in:
Andreas Kling 2019-05-28 13:48:06 +02:00
parent 16ea34fc12
commit cbd858544d
10 changed files with 42 additions and 34 deletions

View file

@ -1,11 +1,12 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
int main(int argc, char** argv)
{