1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:08:10 +00:00

Move <utsname.h> to <sys/utsname.h> for correctness.

This commit is contained in:
Andreas Kling 2018-11-09 10:24:41 +01:00
parent 8249c086c3
commit 7b3b5f745f
4 changed files with 9 additions and 9 deletions

View file

@ -1,12 +1,12 @@
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <utsname.h>
#include <pwd.h>
#include <sys/mman.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/mman.h>
#include <sys/utsname.h>
#include <AK/FileSystemPath.h>
struct GlobalState {