summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe
diff options
context:
space:
mode:
authorMichael Brown2006-12-20 00:55:05 +0100
committerMichael Brown2006-12-20 00:55:05 +0100
commita2c5744daf2542aa8af3474673c9621c52c4cecc (patch)
tree9875161c1b534f745fd32d8626688eb7228fdb68 /src/include/gpxe
parentUse stdlib.h for malloc() instead of malloc.h. (diff)
downloadipxe-a2c5744daf2542aa8af3474673c9621c52c4cecc.tar.gz
ipxe-a2c5744daf2542aa8af3474673c9621c52c4cecc.tar.xz
ipxe-a2c5744daf2542aa8af3474673c9621c52c4cecc.zip
Minimal shell implementation using readline() and system().
Diffstat (limited to 'src/include/gpxe')
-rw-r--r--src/include/gpxe/shell.h12
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 */