Index: libc/generic/ipc.c
===================================================================
--- libc/generic/ipc.c	(revision b1f51f05b56ec81542569d96098ccecf5b78a633)
+++ libc/generic/ipc.c	(revision f4b961f10016a750e8a60d4e28473058f47a467b)
@@ -438,25 +438,2 @@
 }
 
-/* Primitive functions for simple communication */
-void send_call_3(int phoneid, ipcarg_t method, ipcarg_t arg1,
-		 ipcarg_t arg2, ipcarg_t arg3)
-{
-	ipc_call_async_3(phoneid, method, arg1, arg2, arg3, NULL, NULL, 1);
-}
-
-void send_call_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2)
-{
-	ipc_call_async_2(phoneid, method, arg1, arg2, NULL, NULL, 1);
-}
-
-void nsend_call_3(int phoneid, ipcarg_t method, ipcarg_t arg1,
-		  ipcarg_t arg2, ipcarg_t arg3)
-{
-	ipc_call_async_3(phoneid, method, arg1, arg2, arg3, NULL, NULL, 0);
-}
-
-void nsend_call_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2)
-{
-	ipc_call_async_2(phoneid, method, arg1, arg2, NULL, NULL, 0);
-}
-
