summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/shmat.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/gen/shmat.c')
-rw-r--r--lib/libc/gen/shmat.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/libc/gen/shmat.c b/lib/libc/gen/shmat.c
deleted file mode 100644
index 1cd0779..0000000
--- a/lib/libc/gen/shmat.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$Id$";
-#endif /* LIBC_SCCS and not lint */
-
-#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));
-}
OpenPOWER on IntegriCloud