blob: 6a3ef7c3466cc293098e076205a8f27a828c90d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/***
DebuggerKit
(C) 2025 Amlal El Mahrouss
File: NeKernelContract.cc
Purpose: NeKernel Debugger
*/
#pragma once
#ifdef DEBUGGERKIT_POSIX
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/un.h>
#include <unistd.h>
#else
#error !!! DebuggerKit needs a networking backend !!!
#endif
|