blob: 6e25068c614131c598c2f1f13929d55835d5876f (
plain)
1
2
3
4
5
6
7
8
9
|
/* ISC license. */
#include <skalibs/socket.h>
int ipc_bind_reuse_perms (int s, char const *p, unsigned int perms)
{
int fdlock ;
return ipc_bind_reuse_lock_perms(s, p, &fdlock, perms) ;
}
|