mirror of
https://github.com/tezc/sc.git
synced 2025-01-28 07:03:06 +08:00
1bde3abd9f
socket
15 lines
144 B
C
15 lines
144 B
C
#ifndef SC_MMAP_H
|
|
#define SC_MMAP_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
enum sc_mmap_flag
|
|
{
|
|
SC_MMAP_READ,
|
|
SC_MMAP_WRITE,
|
|
SC_MMAP_EXEC
|
|
};
|
|
|
|
|
|
#endif
|