mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-01-01 06:23:37 +01:00
bdf9566723
@update > CMakeLists.txt | remove the generation of the shared version of the fxlibc (deprecated, unused) > include/errno | add some error macros needed in vhex > src/string/strerror | add EINTR support | add EAGAIN support | add ENOMEDIUM support | add EMEDIUMTYPE support @fix > include/target/vhex | add missing headers
8 lines
163 B
C
8 lines
163 B
C
#ifndef __BITS_EXIT_H__
|
|
# define __BITS_EXIT_H__
|
|
|
|
/* Exit codes for CASIOWIN add-ins. */
|
|
#define EXIT_SUCCESS 1
|
|
#define EXIT_FAILURE 0
|
|
|
|
#endif /*__BITS_EXIT_H__*/
|