mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
320 B
19 lines
320 B
|
15 years ago
|
#ifndef _SYS_SHM_H
|
||
|
|
#define _SYS_SHM_H
|
||
|
|
|
||
|
|
#define __NEED_time_t
|
||
|
|
#define __NEED_size_t
|
||
|
|
#define __NEED_pid_t
|
||
|
|
|
||
|
|
#include <bits/alltypes.h>
|
||
|
|
|
||
|
|
#include <sys/ipc.h>
|
||
|
|
#include <bits/shm.h>
|
||
|
|
|
||
|
|
void *shmat(int, const void *, int);
|
||
|
|
int shmctl(int, int, struct shmid_ds *);
|
||
|
|
int shmdt(const void *);
|
||
|
|
int shmget(key_t, size_t, int);
|
||
|
|
|
||
|
|
#endif
|