. renamed __str to __makestr to allow for g++

. changed some CMOS ioctl codes to have correct sizes (struct tm instead
  of u32_t), a disk ioctl code from W to RW, and memory ioctl codes from R
  to W, needed for proper matching of grant in FS
This commit is contained in:
Ben Gras
2006-06-20 08:40:26 +00:00
parent aaca17c36d
commit cfb984e9bd
4 changed files with 7 additions and 7 deletions

View File

@@ -25,8 +25,8 @@
#else
/* Debugging enabled -- verify assertions at run time. */
#ifdef _ANSI
#define __str(x) # x
#define __xstr(x) __str(x)
#define __makestr(x) # x
#define __xstr(x) __makestr(x)
_PROTOTYPE( void __bad_assertion, (const char *_mess) );
#define assert(expr) ((expr)? (void)0 : \