diff options
| author | Michael Brown | 2006-12-20 00:55:05 +0100 |
|---|---|---|
| committer | Michael Brown | 2006-12-20 00:55:05 +0100 |
| commit | a2c5744daf2542aa8af3474673c9621c52c4cecc (patch) | |
| tree | 9875161c1b534f745fd32d8626688eb7228fdb68 /src/include | |
| parent | Use stdlib.h for malloc() instead of malloc.h. (diff) | |
| download | ipxe-a2c5744daf2542aa8af3474673c9621c52c4cecc.tar.gz ipxe-a2c5744daf2542aa8af3474673c9621c52c4cecc.tar.xz ipxe-a2c5744daf2542aa8af3474673c9621c52c4cecc.zip | |
Minimal shell implementation using readline() and system().
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/gpxe/shell.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/gpxe/shell.h b/src/include/gpxe/shell.h new file mode 100644 index 000000000..c353fc4d7 --- /dev/null +++ b/src/include/gpxe/shell.h @@ -0,0 +1,12 @@ +#ifndef _GPXE_SHELL_H +#define _GPXE_SHELL_H + +/** @file + * + * Minimal command shell + * + */ + +extern void shell ( void ); + +#endif /* _GPXE_SHELL_H */ |
