readorders was deprecated and is now gone.

This commit is contained in:
Enno Rehling 2018-12-15 18:15:39 +01:00
parent 0137d70221
commit 5764f71985
2 changed files with 0 additions and 12 deletions

View File

@ -355,14 +355,3 @@ int parseorders(FILE *F)
OP_ParserFree(parser); OP_ParserFree(parser);
return err; return err;
} }
int readorders(FILE *F)
{
int result;
input in;
in.getbuf = file_getbuf;
in.data = F;
result = read_orders(&in);
return result;
}

View File

@ -13,7 +13,6 @@ extern "C" {
} input; } input;
int read_orders(struct input *in); int read_orders(struct input *in);
int readorders(FILE *F);
int parseorders(FILE *F); int parseorders(FILE *F);
#ifdef __cplusplus #ifdef __cplusplus