mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-10 21:42:00 +03:00
699ecb5e21
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
16 lines
243 B
C
16 lines
243 B
C
|
|
/**
|
|
* \file
|
|
* \brief Header: Virtual File System: Network utilities
|
|
*/
|
|
|
|
#ifndef MC_VFS_NETUTIL_H
|
|
#define MC_VFS_NETUTIL_H
|
|
|
|
#include <signal.h>
|
|
|
|
extern volatile sig_atomic_t got_sigpipe;
|
|
void tcp_init (void);
|
|
|
|
#endif /* MC_VFS_NETUTIL_H */
|