connection: Remove unused procedure. * netlink/connection.scm (ffi-sendmsg): Remove. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
netlink/connection.scm
40 | 40 | (define ffi-close (pointer->procedure void | |
41 | 41 | (dynamic-func "close" libc) | |
42 | 42 | (list int))) | |
43 | - | (define ffi-sendmsg (pointer->procedure int | |
44 | - | (dynamic-func "sendmsg" libc) | |
45 | - | (list int '* int) | |
46 | - | #:return-errno? #t)) | |
47 | 43 | (define ffi-sendto (pointer->procedure int | |
48 | 44 | (dynamic-func "sendto" libc) | |
49 | 45 | (list int '* size_t int '* int) |