mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
26 lines
490 B
C
26 lines
490 B
C
#ifdef INTELLISENSE_DIRECTIVES
|
|
# pragma once
|
|
#endif
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Includes
|
|
|
|
#define _GNU_SOURCE
|
|
#include <features.h>
|
|
#include <stdlib.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <linux/limits.h>
|
|
#include <time.h>
|
|
#include <dirent.h>
|
|
#include <pthread.h>
|
|
#include <sys/syscall.h>
|
|
#include <signal.h>
|
|
#include <errno.h>
|
|
#include <dlfcn.h>
|
|
#include <sys/sysinfo.h>
|
|
#include <sys/random.h>
|