mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 20:43:38 +01:00
4b90740d3b
This is implemented for gint only currently; on Vhex, _Exit() is likely just going to be a syscall. For CASIOWIN, this is slightly more difficult, as there is no native exit syscall.
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__*/
|