mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 08:11:34 +00:00
10 lines
92 B
C
10 lines
92 B
C
#ifndef _SHM_H
|
|
#define _SHM_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void *shm_create(size_t size);
|
|
|
|
#endif
|
|
|