mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 09:19:57 +01:00
10 lines
123 B
C
Executable file
10 lines
123 B
C
Executable file
/* See LICENSE of license details. */
|
|
|
|
#include <errno.h>
|
|
#include "stub.h"
|
|
|
|
int _close(int fd)
|
|
{
|
|
return _stub(EBADF);
|
|
}
|