8 lines
110 B
8 lines
110 B
6 years ago
|
#ifndef UTIL_SHM_H
|
||
|
#define UTIL_SHM_H
|
||
|
|
||
|
int create_shm_file(void);
|
||
|
int allocate_shm_file(size_t size);
|
||
|
|
||
|
#endif
|