Files
2020-08-07 12:08:11 +03:00

8 lines
151 B
C

#pragma once
#include <stddef.h>
typedef int key_t;
int shmget(key_t key, size_t size, int flags);
void *shmat(int id, const void *hint, int flags);