mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Move <utsname.h> to <sys/utsname.h> for correctness.
This commit is contained in:
parent
8249c086c3
commit
7b3b5f745f
Notes:
sideshowbarker
2024-07-19 18:31:15 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/7b3b5f745f1
4 changed files with 9 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
|||
#include "utsname.h"
|
||||
#include "errno.h"
|
||||
#include <sys/utsname.h>
|
||||
#include <errno.h>
|
||||
#include <Kernel/Syscall.h>
|
||||
|
||||
extern "C" {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include <utsname.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/utsname.h>
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue