initial commit

This commit is contained in:
Jorijn van der Graaf 2025-04-16 00:43:33 +02:00
commit 41b72e6fdf
46 changed files with 9134 additions and 0 deletions

10
shm.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef SHM_H
#define SHM_H
#include <sys/types.h>
extern "C" {
int create_shm_file(off_t size);
}
#endif