mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
8 lines
158 B
C
8 lines
158 B
C
|
#ifndef UNIX_SOCKET_H
|
||
|
#define UNIX_SOCKET_H
|
||
|
|
||
|
int unix_stream_connect(const char *path);
|
||
|
int unix_stream_listen(const char *path);
|
||
|
|
||
|
#endif /* UNIX_SOCKET_H */
|