diff options
| author | Michael Brown | 2007-01-13 18:23:44 +0100 |
|---|---|---|
| committer | Michael Brown | 2007-01-13 18:23:44 +0100 |
| commit | bd863e4112587900392f4eb4422d5d664a8fb5f8 (patch) | |
| tree | f5c57c48a06f47da730d00d14e0208400a202fd5 /src/arch/i386 | |
| parent | Pick up the return status code from the correct place now that we (diff) | |
| download | ipxe-bd863e4112587900392f4eb4422d5d664a8fb5f8.tar.gz ipxe-bd863e4112587900392f4eb4422d5d664a8fb5f8.tar.xz ipxe-bd863e4112587900392f4eb4422d5d664a8fb5f8.zip | |
Add header for pxe_boot()
Diffstat (limited to 'src/arch/i386')
| -rw-r--r-- | src/arch/i386/include/pxe_call.h | 11 | ||||
| -rw-r--r-- | src/arch/i386/interface/pxe/pxe_call.c | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/arch/i386/include/pxe_call.h b/src/arch/i386/include/pxe_call.h new file mode 100644 index 000000000..84893b550 --- /dev/null +++ b/src/arch/i386/include/pxe_call.h @@ -0,0 +1,11 @@ +#ifndef _PXE_CALL_H +#define _PXE_CALL_H + +/** @file + * + * PXE API entry point + */ + +extern int pxe_boot ( void ); + +#endif /* _PXE_CALL_H */ diff --git a/src/arch/i386/interface/pxe/pxe_call.c b/src/arch/i386/interface/pxe/pxe_call.c index df32dd7d9..d39c65aac 100644 --- a/src/arch/i386/interface/pxe/pxe_call.c +++ b/src/arch/i386/interface/pxe/pxe_call.c @@ -20,6 +20,7 @@ #include <registers.h> #include <biosint.h> #include <pxe.h> +#include <pxe_call.h> /** @file * |
