freebsd-ports/lang/modula-3-socks/files/close.c
John Polstra 61ce7c4a22 This package implements SOCKS support for Modula-3 applications. It
will be used to support SOCKS operation in the soon-to-be-released next
version of CVSup.

A tip of the hat to:  Darryl Okahata, who developed the patches
necessary to make the SOCKS library work with Modula-3's multithreaded
I/O system.
1996-11-01 02:37:35 +00:00

14 lines
151 B
C

#include "wrap.h"
#include <unistd.h>
int
m3_close(int d)
{
int result;
ENTER_CRITICAL;
result = close(d);
EXIT_CRITICAL;
return result;
}