Lely core libraries
2.2.5
io.c
Go to the documentation of this file.
1
24
#include "
io.h
"
25
26
#ifdef _POSIX_C_SOURCE
27
28
#include <
lely/io2/sys/io.h
>
29
30
int
31
io_init
(
void
)
32
{
33
// POSIX platforms do not require initialization or finalization.
34
return
0;
35
}
36
37
void
38
io_fini
(
void
)
39
{
40
// POSIX platforms do not require initialization or finalization.
41
}
42
43
#endif // _POSIX_C_SOURCE
io_fini
void io_fini(void)
Finalizes the I/O library and terminates the availability of the I/O functions.
Definition:
io.c:38
io.h
io_init
int io_init(void)
Initializes the I/O library and makes the I/O functions available for use.
Definition:
io.c:31
src
io2
posix
io.c
Generated by
1.8.17