source: trunk/kernel/syscalls/shared_include/almos-mkh/stdlib.h @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 471 bytes
RevLine 
[444]1#ifndef _SHARED_STDLIB_H_
2#define _SHARED_STDLIB_H_
3
4/*******************************************************************************************
5 * This enum defines the supported terminaison status values for the exit() syscall.
6 ******************************************************************************************/
7
8typedef enum
9{
10        EXIT_SUCCESS,
11        EXIT_FAILURE,
12} 
13exit_statut_t;
14
15
16#define   RAND_MAX   65535
17#ifndef NULL
18#define  NULL  (void *)0
19#endif
20
21#endif
Note: See TracBrowser for help on using the repository browser.