Use "#include <..>" to include public headers.

This commit is contained in:
Ralf Corsepius
2008-09-07 18:06:27 +00:00
parent 5d3211a7af
commit 90b2c07205
3 changed files with 7 additions and 7 deletions

View File

@@ -22,8 +22,8 @@
#include <rtems/libio.h>
#include <rtems/chain.h>
#include "rtems/blkdev.h"
#include "rtems/diskdevs.h"
#include <rtems/blkdev.h>
#include <rtems/diskdevs.h>
#ifdef __cplusplus
extern "C" {

View File

@@ -24,7 +24,7 @@ extern "C" {
/* Buffer pool identifier */
typedef int rtems_bdpool_id;
#include "rtems/blkdev.h"
#include <rtems/blkdev.h>
/* Driver capabilities. */

View File

@@ -13,14 +13,14 @@
#ifndef _RTEMS_RAMDISK_H
#define _RTEMS_RAMDISK_H
#include <rtems.h>
#include <rtems/blkdev.h>
#ifdef __cplusplus
extern "C" {
#endif
#include <rtems.h>
#include "rtems/blkdev.h"
/* RAM disk configuration table entry */
typedef struct rtems_ramdisk_config {
int block_size; /* RAM disk block size */