2002-08-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* console/Makefile.am: Add $(PROJECT_INCLUDE)/rtems to
	PREINSTALL_FILES.
	* console/mouse_parser.c: Include <string.h> (for strcmp).
	* console/vt.c: Include <string.h> (for memcpy).
	* wd8003/wd8003.c: Include <string.h> (for memcpy, memset).
This commit is contained in:
Ralf Corsepius
2002-08-29 15:54:25 +00:00
parent 72f4ec871e
commit b88e3662e2
5 changed files with 12 additions and 0 deletions

View File

@@ -1,3 +1,11 @@
2002-08-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* console/Makefile.am: Add $(PROJECT_INCLUDE)/rtems to
PREINSTALL_FILES.
* console/mouse_parser.c: Include <string.h> (for strcmp).
* console/vt.c: Include <string.h> (for memcpy).
* wd8003/wd8003.c: Include <string.h> (for memcpy, memset).
2002-08-21 Joel Sherrill <joel@OARcorp.com>
* bsp_specs: Added support for -nostdlibs.

View File

@@ -19,6 +19,7 @@ include $(top_srcdir)/../../../../../../automake/compile.am
include $(top_srcdir)/../../../../../../automake/lib.am
PREINSTALL_FILES = $(PROJECT_INCLUDE) \
$(PROJECT_INCLUDE)/rtems \
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
#

View File

@@ -19,6 +19,7 @@
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h> /* strcmp */
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>

View File

@@ -14,6 +14,7 @@
* driver. Removed all stuff not required, such as VT_, Fonts, etc.
*/
#include <string.h> /* memcpy */
#include <sys/types.h>
#include <errno.h>

View File

@@ -16,6 +16,7 @@
#include <stdio.h>
#include <stdarg.h>
#include <string.h> /* memcpy, memset */
#include <rtems/error.h>
#include <rtems/rtems_bsdnet.h>