2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-14 15:21:32 +00:00

Move include/buffer.h to include/gpxe/buffer.h

This commit is contained in:
Michael Brown 2007-01-11 01:47:26 +00:00
parent de042993c0
commit bb2024c6d6
7 changed files with 9 additions and 9 deletions

View File

@ -43,7 +43,7 @@
#include "io.h"
#include "errno.h"
#include <assert.h>
#include "buffer.h"
#include <gpxe/buffer.h>
/**
* Initialise a buffer.

View File

@ -1,5 +1,5 @@
#include "dev.h"
#include "buffer.h"
#include <gpxe/buffer.h>
#include "load_buffer.h"
#include "image.h"
#include <console.h>

View File

@ -3,7 +3,7 @@
#include "stdint.h"
#include "string.h"
#include "buffer.h"
#include <gpxe/buffer.h>
#include "dhcp.h" /* for dhcp_dev_id */
#include <gpxe/tables.h>
#include <assert.h>

View File

@ -1,5 +1,5 @@
#ifndef BUFFER_H
#define BUFFER_H
#ifndef _GPXE_BUFFER_H
#define _GPXE_BUFFER_H
#include "compiler.h" /* for doxygen */
#include "stdint.h"
@ -94,4 +94,4 @@ extern void init_buffer ( struct buffer *buffer );
extern int fill_buffer ( struct buffer *buffer, const void *data,
off_t offset, size_t len );
#endif /* BUFFER_H */
#endif /* _GPXE_BUFFER_H */

View File

@ -1,7 +1,7 @@
#ifndef LOAD_BUFFER_H
#define LOAD_BUFFER_H
#include "buffer.h"
#include <gpxe/buffer.h>
/*
* These functions are architecture-dependent, but the interface must

View File

@ -2,7 +2,7 @@
#define PROTO_H
#include <gpxe/tables.h>
#include "buffer.h"
#include <gpxe/buffer.h>
#include <gpxe/in.h>
struct protocol {

View File

@ -4,7 +4,7 @@
/** @file */
#include <gpxe/in.h>
#include "buffer.h"
#include <gpxe/buffer.h>
#include "nic.h"
#include "ip.h"
#include "udp.h"