MCPcopy Create free account
hub / github.com/ElementsProject/lightning / unlink_noerr

Function unlink_noerr

ccan/ccan/noerr/noerr.c:33–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33int unlink_noerr(const char *pathname)
34{
35 int saved_errno = errno, ret;
36
37 if (unlink(pathname) != 0)
38 ret = errno;
39 else
40 ret = 0;
41
42 errno = saved_errno;
43 return ret;
44}
45
46void free_noerr(void *p)
47{

Callers 10

decrypt_hsmFunction · 0.85
encrypt_hsmFunction · 0.85
create_encrypted_hsmFunction · 0.85
create_hsmFunction · 0.85
maybe_create_new_hsmFunction · 0.85
mainFunction · 0.85
write_scbFunction · 0.85
maybe_create_new_scbFunction · 0.85
update_scbFunction · 0.85
initFunction · 0.85

Calls

no outgoing calls

Tested by 1

mainFunction · 0.68