From 5ebff60479fc7a9f7f50ac03b124c91d4e6ebe11 Mon Sep 17 00:00:00 2001 From: Indent Date: Thu, 19 Feb 2015 02:47:20 -0300 Subject: Reindent everything to K&R style with tabs Used uncrustify, with the configuration file in ./doc/uncrustify.cfg Commit author set to "Indent " so that it's easier to skip while doing git blame. --- sock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sock.h') diff --git a/sock.h b/sock.h index c82f5275..e1fd13d4 100644 --- a/sock.h +++ b/sock.h @@ -9,4 +9,4 @@ #define sock_make_nonblocking(fd) fcntl(fd, F_SETFL, O_NONBLOCK) #define sock_make_blocking(fd) fcntl(fd, F_SETFL, 0) #define sockerr_again() (errno == EINPROGRESS || errno == EINTR) -void closesocket( int fd ); +void closesocket(int fd); -- cgit v1.2.3