Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5122 → Rev 5123

/programs/develop/libraries/menuetlibc/include/assert.h
4,7 → 4,11
#undef assert
#undef unimpl
 
#ifdef NDEBUG
#define assert(test) /*nothing*/
#else
#define assert(test) ((void)((test)||(__dj_assert(#test,__FILE__,__LINE__),0)))
#endif
#define unimpl() __dj_unimp("Called unimplemented function in file \"" __FILE__ "\"\n")
 
#ifndef __dj_include_assert_h_
/programs/develop/libraries/menuetlibc/include/time.h
10,10 → 10,7
 
#ifndef __dj_ENFORCE_ANSI_FREESTANDING
 
/* 65536(tics/hour) / 3600(sec/hour) * 5(scale) = 91.02
The 5 is to make it a whole number (18.2*5=91) so that
floating point ops aren't required to use it. */
#define CLOCKS_PER_SEC 91
#define CLOCKS_PER_SEC 100
 
#include <sys/djtypes.h>