mirror of
https://github.com/mikpe/pdp10-tools.git
synced 2026-01-21 18:16:23 +00:00
12 lines
127 B
C
12 lines
127 B
C
/*
|
|
* parse.h
|
|
*/
|
|
#ifndef PARSE_H
|
|
#define PARSE_H
|
|
|
|
#include "stmt.h"
|
|
|
|
int parse_stmt(struct stmt *stmt);
|
|
|
|
#endif /* PARSE_H */
|