/* * Author: Manoj Ampalam */ /* disable inclusion of compatability defitnitions in CRT headers */ #define __STDC__ 1 #include #include #include //#include #include "../test_helper/test_helper.h" extern void log_init(char *av0, int level, int facility, int on_stderr); void socket_tests(); void file_tests(); void tests(void) { _set_abort_behavior(0, 1); log_init(NULL, 7, 2, 0); socket_tests(); file_tests(); return; }