summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/command.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/include/command.h b/src/include/command.h
deleted file mode 100644
index 113ca2f0a..000000000
--- a/src/include/command.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef COMMAND_H
-#define COMMAND_H
-
-#include <gpxe/tables.h>
-
-struct command {
- const char *name; // The name of the command
- const char *usage; // Description of how to use the command
- const char *desc; // Short description of the command
- int ( *exec ) ( int argc, char **argv); // The command function to call
-};
-
-#define __command __table ( commands, 01 )
-#endif
-