summaryrefslogtreecommitdiff
path: root/bcc/hashcmd.c
blob: fd22166cddb3027ca35470ee2b7d810092f2148b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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