in progress: added shalloc.h/cc did nothing :p
[winnie] / src / shalloc.h
1 #ifndef SHALLOC_H_
2 #define SHALLOC_H_
3
4 bool init_shared_memory();
5 void destroy_shared_memory();
6
7 void *shmalloc(size_t bytes);
8 void shmfree(void *ptr);
9
10 #endif // SHALLOC_H_