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
This header file is part of the I/O library; it contains system-dependent I/O initialization/finaliza...
int io_init(void)
Initializes the I/O library and makes the I/O functions available for use.
Definition: io.c:31
void io_fini(void)
Finalizes the I/O library and terminates the availability of the I/O functions.
Definition: io.c:38
This is the internal header file of the Windows-specific I/O declarations.