summaryrefslogtreecommitdiff
path: root/bcc/hashcmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'bcc/hashcmd.c')
-rw-r--r--bcc/hashcmd.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/bcc/hashcmd.c b/bcc/hashcmd.c
new file mode 100644
index 0000000..fd22166
--- /dev/null
+++ b/bcc/hashcmd.c
@@ -0,0 +1,23 @@
+
+/* decode remaining preprocessor lines, minimal version. */
+
+/* Copyright (C) GPL V2, derived from preproc.c by RDB. */
+
+#include "bcc.h"
+#include "input.h"
+#include "os.h"
+#include "output.h"
+#include "parse.h"
+#include "sc.h"
+#include "scan.h"
+#include "table.h"
+#include "type.h"
+
+#ifndef BUILTIN_CPP
+/* docontrol() - process control statement, #line and #asm only. */
+
+PUBLIC void docontrol()
+{
+ bugerror("docontrol for tiny machines not implemented yet");
+}
+#endif