Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 422 → Rev 428

/shark/trunk/drivers/linuxc26/include/linux/kernel.h
15,12 → 15,12
#include <asm/byteorder.h>
#include <asm/bug.h>
 
#define INT_MAX ((int)(~0U>>1))
#define INT_MIN (-INT_MAX - 1)
#define UINT_MAX (~0U)
#define LONG_MAX ((long)(~0UL>>1))
#define LONG_MIN (-LONG_MAX - 1)
#define ULONG_MAX (~0UL)
//#define INT_MAX ((int)(~0U>>1))
//#define INT_MIN (-INT_MAX - 1)
//#define UINT_MAX (~0U)
//#define LONG_MAX ((long)(~0UL>>1))
//#define LONG_MIN (-LONG_MAX - 1)
//#define ULONG_MAX (~0UL)
 
#define STACK_MAGIC 0xdeadbeef
 
171,6 → 171,8
(void) (&_x == &_y); \
_x > _y ? _x : _y; })
 
 
 
/*
* ..and if you can't take the strict
* types, you can specify one yourself.