10 lines
113 B
C
10 lines
113 B
C
|
|
#ifndef SHM_H
|
||
|
|
#define SHM_H
|
||
|
|
|
||
|
|
#include <sys/types.h>
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
int create_shm_file(off_t size);
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|