mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-01-01 14:33:36 +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.
7 lines
124 B
C
7 lines
124 B
C
#ifndef __BITS_EXIT_H__
|
|
# define __BITS_EXIT_H__
|
|
|
|
#define EXIT_SUCCESS 0
|
|
#define EXIT_FAILURE 1
|
|
|
|
#endif /*__BITS_EXIT_H__*/
|