2020-09-03 11:13:37 +02:00
|
|
|
/* See LICENSE of license details. */
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include "stub.h"
|
2020-09-16 10:28:54 +02:00
|
|
|
#include "weak_under_alias.h"
|
2020-09-03 11:13:37 +02:00
|
|
|
|
|
|
|
int __wrap_close(int fd)
|
|
|
|
{
|
|
|
|
return _stub(EBADF);
|
|
|
|
}
|
2020-09-16 10:28:54 +02:00
|
|
|
weak_under_alias(close);
|