blob: 9bacc812c2eb5c072630c0d5493778efcf5502a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/ne_system
#ifndef _NE_H_
#define _NE_H_
#define _NE_SYSTEM 202603L
#include <System/Config.h>
// POSIX wrapper
#include <libPOSIXWrapper/POSIXKit/unistd.h>
// IPC
#include <libMsg/MsgKit/Server.h>
// System calls
#include <libSystem/SystemKit/System.h>
// Sound mixer
#include <libSoundSystem/SoundSystemKit/VirtualMixer.h>
#endif // !_NE_H_
|