#ifndef _SHARED_STDLIB_H_ #define _SHARED_STDLIB_H_ /******************************************************************************************* * This enum defines the supported terminaison status values for the exit() syscall. ******************************************************************************************/ typedef enum { EXIT_SUCCESS, EXIT_FAILURE, } exit_statut_t; #define RAND_MAX 65535 #ifndef NULL #define NULL (void *)0 #endif #endif