From 3929d7c726f35aaba8d5985d29c61c0c676c541c Mon Sep 17 00:00:00 2001 From: Fabrizio Bertocci Date: Sun, 23 May 2021 22:13:31 -0400 Subject: [PATCH] Removed vim-folding from around function. No functional change --- libc/sock/socketpair-nt.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libc/sock/socketpair-nt.c b/libc/sock/socketpair-nt.c index 8855f49cb..10899b1fd 100644 --- a/libc/sock/socketpair-nt.c +++ b/libc/sock/socketpair-nt.c @@ -27,7 +27,6 @@ #include "libc/sysv/consts/sock.h" #include "libc/sysv/errfuns.h" -// {{{ sys_socketpair_nt textwindows int sys_socketpair_nt(int family, int type, int proto, int sv[2]) { int64_t hpipe, h1, h2; int reader, writer, oflags; @@ -89,4 +88,3 @@ textwindows int sys_socketpair_nt(int family, int type, int proto, int sv[2]) { sv[1] = writer; return 0; } -// }}}