These files are no longer used.

This commit is contained in:
jake 2002-05-24 04:41:02 +00:00
parent 2db4b611ef
commit e35256e809
11 changed files with 0 additions and 196 deletions

View File

@ -1,18 +0,0 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#if __STDC__
int msgctl(int msqid, int cmd, struct msqid_ds *buf)
#else
int msgctl(msqid,cmd,buf)
int msqid;
int cmd;
caddr_t buf;
#endif
{
return (msgsys(0, msqid, cmd, buf));
}

View File

@ -1,17 +0,0 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#if __STDC__
int msgget(key_t key, int msgflg)
#else
int msgget(key,msgflg)
key_t key;
int msgflg;
#endif
{
return (msgsys(1, key, msgflg));
}

View File

@ -1,20 +0,0 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#if __STDC__
int msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg)
#else
int msgrcv(msqid, msgp, msgsz, msgtyp, msgflg)
int msqid;
void *msgp;
size_t msgsz;
long msgtyp;
int msgflg;
#endif
{
return (msgsys(3, msqid, msgp, msgsz, msgtyp, msgflg));
}

View File

@ -1,19 +0,0 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#if __STDC__
int msgsnd(int msqid, void *msgp, size_t msgsz, int msgflg)
#else
int msgsnd(msqid, msgp, msgsz, msgflg)
int msqid;
void *msgp;
size_t msgsz;
int msgflg;
#endif
{
return (msgsys(2, msqid, msgp, msgsz, msgflg));
}

View File

@ -1,16 +0,0 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#if __STDC__
int semconfig(int cmd, int p1, int p2, int p3)
#else
int semconfig(cmd, p1, p2, p3)
int cmd, p1, p2, p3;
#endif
{
return (semsys(3, cmd, p1, p2, p3));
}

View File

@ -1,18 +0,0 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#if __STDC__
int semget(key_t key, int nsems, int semflg)
#else
int semget(key, nsems, semflg)
key_t key;
int nsems;
int semflg;
#endif
{
return (semsys(1, key, nsems, semflg));
}

View File

@ -1,18 +0,0 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#if __STDC__
int semop(int semid, struct sembuf *sops, unsigned nsops)
#else
int semop(semid, sops, nsops)
int semid;
struct sembuf *sops;
unsigned nsops;
#endif
{
return (semsys(2, semid, sops, nsops, 0));
}

View File

@ -1,18 +0,0 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#if __STDC__
void *shmat(int shmid, void *shmaddr, int shmflg)
#else
void *shmat(shmid, shmaddr, shmflg)
int shmid;
void *shmaddr;
int shmflg;
#endif
{
return ((void *)shmsys(0, shmid, shmaddr, shmflg));
}

View File

@ -1,18 +0,0 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#if __STDC__
int shmctl(int shmid, int cmd, struct shmid_ds *buf)
#else
int shmctl(shmid, cmd, buf)
int shmid;
int cmd;
struct shmid_ds *buf;
#endif
{
return (shmsys(4, shmid, cmd, buf));
}

View File

@ -1,16 +0,0 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#if __STDC__
int shmdt(void *shmaddr)
#else
int shmdt(shmaddr)
void *shmaddr;
#endif
{
return (shmsys(2, shmaddr));
}

View File

@ -1,18 +0,0 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#if __STDC__
int shmget(key_t key, int size, int shmflg)
#else
int shmget(key, size, shmflg)
key_t key;
int size;
int shmflg;
#endif
{
return (shmsys(3, key, size, shmflg));
}