2003-09-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* fileio/init.c: Unconditionally define MIN (We *do want* to see
	error messages if it conflicts).
This commit is contained in:
Ralf Corsepius
2003-09-30 05:43:19 +00:00
parent 20c214e3bc
commit 796c4e3264
2 changed files with 5 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
2003-09-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* fileio/init.c: Unconditionally define MIN (We *do want* to see
error messages if it conflicts).
2003-09-04 Joel Sherrill <joel@OARcorp.com> 2003-09-04 Joel Sherrill <joel@OARcorp.com>
* README, base_mp/apptask.c, base_mp/init.c, base_mp/system.h, * README, base_mp/apptask.c, base_mp/init.c, base_mp/system.h,

View File

@@ -92,9 +92,7 @@ fstab_t fs_table[] = {
} }
}; };
#ifndef MIN
#define MIN(a,b) (((a) > (b)) ? (b) : (a)) #define MIN(a,b) (((a) > (b)) ? (b) : (a))
#endif
#define USE_SHELL #define USE_SHELL
@@ -596,5 +594,3 @@ Init (rtems_task_argument ignored)
fileio_menu(); fileio_menu();
} }