mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
14 lines
151 B
C
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;
|
||
|
}
|