diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-04-14 07:16:29 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-04-14 07:16:29 -0700 |
commit | 2f989999779dbd9b2b91819317beda6a2560570c (patch) | |
tree | 9d73b119cb050394ba4c1242af14bf299e930ad9 /stream.h | |
parent | 82a11e883049d6578b0301b61603e088dc89773f (diff) | |
download | txr-2f989999779dbd9b2b91819317beda6a2560570c.tar.gz txr-2f989999779dbd9b2b91819317beda6a2560570c.tar.bz2 txr-2f989999779dbd9b2b91819317beda6a2560570c.zip |
Make open_sockfd static.
The open_sockfd function is only called within socket.c
* socket.c (open_sockfd): More function up and
change to static.
* stream.h (open_sockfd): Declaration removed.
Diffstat (limited to 'stream.h')
-rw-r--r-- | stream.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -192,7 +192,6 @@ val open_directory(val path); val open_file(val path, val mode_str); val open_fileno(val fd, val mode_str); #if HAVE_SOCKETS -val open_sockfd(val fd, val family, val type, val mode_str); val open_socket(val family, val type, val mode_str); #endif val open_tail(val path, val mode_str, val seek_end_p); |