bsps: Fix header includes

This commit is contained in:
Sebastian Huber
2013-08-26 13:00:53 +02:00
parent 07ad4b6660
commit d56f76ac93
2 changed files with 5 additions and 9 deletions

View File

@@ -46,15 +46,9 @@
* http://www.rtems.com/license/LICENSE.
*/
#include <rtems.h>
#include <bsp/bootcard.h>
#include <rtems/bspIo.h>
#include <rtems/malloc.h>
#ifdef CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK
#include <unistd.h> /* for sbrk() */
#endif
#include <rtems.h>
/*
* At most a single pointer to the cmdline for those target

View File

@@ -29,10 +29,12 @@
#ifndef LIBBSP_SHARED_BOOTCARD_H
#define LIBBSP_SHARED_BOOTCARD_H
#include <unistd.h>
#include <string.h>
#include <rtems/malloc.h>
#include <rtems/config.h>
#include <rtems/bspIo.h>
#include <rtems/malloc.h>
#include <rtems/score/wkspace.h>
#include <bspopts.h>