Remove building with NOCRYPTO option
[minix.git] / minix / lib / libsys / sys_update.c
blob86274628f12ad09846fbb3c847b21ff42b13f357
1 #include "syslib.h"
3 int sys_update(endpoint_t src_ep, endpoint_t dst_ep, int flags)
5 message m;
7 m.SYS_UPD_SRC_ENDPT = src_ep;
8 m.SYS_UPD_DST_ENDPT = dst_ep;
9 m.SYS_UPD_FLAGS = flags;
11 return _kernel_call(SYS_UPDATE, &m);